Skip to content

Instantly share code, notes, and snippets.

@techiediaries
Created September 25, 2018 18:58
Show Gist options
  • Select an option

  • Save techiediaries/bb57155b0978745754efeaabf64c0acc to your computer and use it in GitHub Desktop.

Select an option

Save techiediaries/bb57155b0978745754efeaabf64c0acc to your computer and use it in GitHub Desktop.
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