Created
September 25, 2018 18:58
-
-
Save techiediaries/bb57155b0978745754efeaabf64c0acc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| describe("MyJSUtilities", function() { | |
| describe(">String Utils", function() { | |
| it("should be able to lower case a string",function() { | |
| expect().nothing(); | |
| }); | |
| it("should be able to upper case a string",function() { | |
| expect().nothing(); | |
| }); | |
| it("should be able to confirm if a string contains a substring",function() { | |
| expect().nothing(); | |
| }); | |
| it("should be able repeat a string multiple times",function() { | |
| expect().nothing(); | |
| }); | |
| }); | |
| describe("Math Utils", function() { | |
| describe("Basic Math Utils", function() { | |
| it("should be able to tell if a number is even",function() { | |
| expect().nothing(); | |
| }); | |
| it("should be able to tell if a number is odd",function() { | |
| expect().nothing(); | |
| }); | |
| }); | |
| describe("Advanced Math Utils", function() { | |
| it("should be able to tell if a number is prime",function() { | |
| expect().nothing(); | |
| }); | |
| it("should be able to calculate the fibonacci of a number",function() { | |
| expect().nothing(); | |
| }); | |
| }); | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment