Created
March 25, 2019 18:28
-
-
Save fatso83/d6ef639119bc497cbc8db2e2a950e441 to your computer and use it in GitHub Desktop.
This file contains 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
const assert = require('assert'); | |
//before(function(){ | |
//}); | |
describe("Outer", function() { | |
it("TEST", (function() { | |
assert.equal('Outer TEST',this.test.fullTitle()); | |
})); | |
}); | |
This file contains 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
{ | |
"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