We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c84244 commit 5ac555dCopy full SHA for 5ac555d
unit-testing/studio/tests/launchcode.test.js
@@ -4,7 +4,7 @@ const launchcode = require('../index.js');
4
describe ("Testing launchcode", function(){
5
6
// Write your unit tests here!
7
-test("testing launchcode", function(){
+test("testing launchcode", function(){``
8
expect(launchcode.organization).toBe("nonprofit");
9
});
10
test("checks Executive Director", function(){
@@ -19,5 +19,10 @@ test("checks programs", function(){
19
expect(launchcode.programsOffered).toContain("Liftoff");
20
expect(launchcode.programsOffered.length).toBe(3);
21
})
22
-
23
+
24
+describe ("Testing launchoutput", function(){
25
+ test("When passed a number that is ONLY divisible by 2, launchOutput() returns 'Launch!'", function(){
26
+ expect(launchOutput).toBe("Launch")
27
+ })
28
+ // cn you see me?
0 commit comments