Skip to content

Commit

Permalink
GH-14 Make cucumber tests part of the ci process
Browse files Browse the repository at this point in the history
  • Loading branch information
DesHorsley committed Jun 22, 2019
1 parent 3f91db0 commit f9921f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"build": "tsc --declaration ",
"postbuild": "shx mkdir dist/src/templates && shx cp -rf src/templates/*.html dist/src/templates",
"test": "mocha --config .mocharc.json src/**/*.spec.ts",
"ci": "npm run test && npm run build && npm pack",
"ci": "npm run test && npm run build && npm run e2e && npm pack",
"lint": "tslint -c tslint.json -p tsconfig.json 'src/**/*.ts'",
"cover": "NODE_ENV=test nyc --report lcovonly _mocha --config .mocharc.json src/**/*.spec.ts",
"pree2e": "npm run build",
"e2eWithBuild": "npm run build && npm run e2e",
"e2e": "tsc -p e2e/tsconfig.json && cucumber-js ./e2e/features --no-strict",
"poste2e": "shx rm -rf e2e/step_definitions/**/*.js e2e/reportOutput/**/*.html",
"coveralls": "npm run cover && shx cat ./coverage/lcov.info | coveralls"
Expand Down

0 comments on commit f9921f1

Please sign in to comment.