Skip to content

Instantly share code, notes, and snippets.

@1999
Last active May 5, 2017 02:35
Show Gist options
  • Save 1999/9ea881310f33f47aefb23bb32a8996c8 to your computer and use it in GitHub Desktop.
Save 1999/9ea881310f33f47aefb23bb32a8996c8 to your computer and use it in GitHub Desktop.
mpt #113
node_modules/

mocha-parallel-tests: issue #113

git clone [email protected]:9ea881310f33f47aefb23bb32a8996c8.git mpt-113
cd mpt-113
npm i
npm test
{
"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"
}
}
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