Skip to content

Instantly share code, notes, and snippets.

@qunabu
Created November 26, 2020 10:23
Show Gist options
  • Save qunabu/a58d8845e80c12c5ad2dc626cd508678 to your computer and use it in GitHub Desktop.
Save qunabu/a58d8845e80c12c5ad2dc626cd508678 to your computer and use it in GitHub Desktop.
TestRules.js
describe("A set of functionalities", () => {
it("should do something nice", () => {});
describe("A subset of functionalities", () => {
it("should do something great", () => {});
it("should do something awesome", () => {});
});
describe("Another subset of functionalities", () => {
it("should also do something great", () => {});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment