Skip to content

Instantly share code, notes, and snippets.

@DilwoarH
Created December 6, 2019 11:56
Show Gist options
  • Save DilwoarH/4b25c1af5a2f8e90308781ad47b585c6 to your computer and use it in GitHub Desktop.
Save DilwoarH/4b25c1af5a2f8e90308781ad47b585c6 to your computer and use it in GitHub Desktop.
Template for mocha test
const Mocha = require("mocha");
const assert = require("assert");
const mocha = new Mocha();
describe("Something", () => {
it("does something", () => {
assert.equal(1, 1);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment