git clone [email protected]:9ea881310f33f47aefb23bb32a8996c8.git mpt-113
cd mpt-113
npm i
npm test
Last active
May 5, 2017 02:35
-
-
Save 1999/9ea881310f33f47aefb23bb32a8996c8 to your computer and use it in GitHub Desktop.
mpt #113
This file contains hidden or 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
node_modules/ |
This file contains hidden or 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-parallel-tests-issues-113", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"test": "./node_modules/.bin/mocha-parallel-tests --reporter mochawesome test.js" | |
}, | |
"author": "", | |
"license": "ISC", | |
"devDependencies": { | |
"mocha": "^3.3.0", | |
"mocha-parallel-tests": "^1.2.9", | |
"mocha-teamcity-reporter": "^1.1.1", | |
"mochawesome": "^2.1.0" | |
} | |
} |
This file contains hidden or 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
describe('suite', () => { | |
it('should finish now', () => {}); | |
it('should finish after 100ms', (done) => { | |
setTimeout(done, 100); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment