Skip to content

Instantly share code, notes, and snippets.

@fatso83
Created March 25, 2019 18:28
Show Gist options
  • Save fatso83/d6ef639119bc497cbc8db2e2a950e441 to your computer and use it in GitHub Desktop.
Save fatso83/d6ef639119bc497cbc8db2e2a950e441 to your computer and use it in GitHub Desktop.
const assert = require('assert');
//before(function(){
//});
describe("Outer", function() {
it("TEST", (function() {
assert.equal('Outer TEST',this.test.fullTitle());
}));
});
{
"name": "mocha-test",
"version": "1.0.0",
"description": "",
"main": "demo.test.js",
"dependencies": {},
"devDependencies": {
"mocha": "^6.0.2"
},
"scripts": {
"test": "mocha --reporter tap demo.test.js --watch & echo 'Now do touch demo.test.js several times!'"
},
"author": "",
"license": "ISC"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment