Skip to content
Permalink
Browse files
fixed acceptance testing
  • Loading branch information
aa7401 committed Nov 6, 2018
1 parent 34ac116 commit 8a423b6ec170ebf9ce6c3f3e51d4470316e16011
Show file tree
Hide file tree
Showing 4 changed files with 4,352 additions and 4,714 deletions.
@@ -13,3 +13,4 @@ dependency-check-report.html
linter.xml
.node-persist/
duplication.json
trace.json
@@ -4,7 +4,9 @@
"description": "Tutorial: User Interface Testing with Jest and Puppeteer",
"main": "index.js",
"scripts": {
"test": "jest"
"test": "jest --coverage",
"watch": "node_modules/.bin/jest --coverage --watchAll",
"acceptance": "./test.sh"
},
"repository": {
"type": "git",
@@ -23,9 +25,6 @@
"puppeteer": "^1.10.0"
},
"dependencies": {
"chalk": "^2.4.1",
"express": "^4.16.4",
"express-handlebars": "^3.0.0",
"handlebars": "^4.0.12",
"koa": "^2.6.1",
"koa-bodyparser": "^4.2.1",
@@ -0,0 +1,5 @@
#!/usr/bin/env bash

node index.js&
npm run test
kill %1

0 comments on commit 8a423b6

Please sign in to comment.