Skip to content

Commit

Permalink
Add sound test. Update Patreon supporters
Browse files Browse the repository at this point in the history
  • Loading branch information
Luxapodular committed Sep 28, 2020
1 parent faf1781 commit 23ff1fa
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions engine/tests/test.Wick.Frame.js
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,16 @@ describe('Wick.Frame', function() {
});
});

describe('#sounds', function () {
it('should not crash on null sound', function() {
var project = new Wick.Project();
var frame1 = project.activeFrame;
frame1.sound = null;
expect(frame1.sound).to.equal(null);
});
});


describe('#createTween', function () {
it('should create a blank tween if the frame is empty', function () {
var project = new Wick.Project();
Expand Down
8 changes: 4 additions & 4 deletions src/Editor/Modals/WelcomeMessage/WelcomeMessage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ class WelcomeModal extends Component {
"New Fill Bucket and More!",
] // No More than 3

let t1 = ["Hyun's Dojo", "Guy de Bree", "Dimp"]
let t2 = ["Constance Ye"]
let t3 = ["Gautaum Bose", "Trevor"]
let t4 = ["Golan Levin", "ThisPodcastIsInEnglish", "Daniel Sun", "Benjamin Briand", "Joseph Hocking", "Anonymous"]
let t1 = ["Guy de Bree", "Dimp", "Hyun's Dojo"]
let t2 = ["Constance Ye", "Anonymous"]
let t3 = ["Gautaum Bose", "Trevor", "David Teton-Landis", "Jovanny Rodriguez"]
let t4 = ["Golan Levin", "ThisPodcastIsInEnglish", "Daniel Sun", "Benjamin Briand", "Joseph Hocking", "Charisse Hampton", "Jessie Young", "O.K. Keyes", "Anonymous"]
let t5 = ["Joe", "Karlin Fox", "StepSwitcher", "Kandy Kat", "Pablosaurs910"]
this.patreonSupporters = t1.concat(t2, t3, t4, t5)
}
Expand Down

0 comments on commit 23ff1fa

Please sign in to comment.