Skip to content

Instantly share code, notes, and snippets.

@adikuntjara
Created February 22, 2021 12:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adikuntjara/443587a835a5cd8745dc9f94756be97b to your computer and use it in GitHub Desktop.
Save adikuntjara/443587a835a5cd8745dc9f94756be97b to your computer and use it in GitHub Desktop.
package.json
{
"name": "mocha-chai",
"version": "1.0.0",
"description": "API Testing Framework with Mocha and Chai",
"main": "index.js",
"scripts": {
"test-api": "node ./node_modules/mocha/bin/mocha ./api/test --recursive --reporter mochawesome --reporter-options reportDir=reports/mochawesome/ --timeout 180000",
"reports": "open 'reports/mochawesome/mochawesome.html'"
},
"author": "Laksana Adi",
"dependencies": {
"chai": "^4.1.2",
"dotenv": "^7.0.0",
"mocha": "^5.2.0",
"mochawesome": "^3.0.2",
"supertest": "^3.1.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment