Skip to content

Commit

Permalink
chore(build): run serverless examples during build
Browse files Browse the repository at this point in the history
  • Loading branch information
mefellows committed Mar 31, 2018
1 parent d4a49f5 commit 0d46776
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,14 @@
"predist": "npm run clean && npm run lint && npm run jscpd",
"release": "standard-version --prerelease alpha --release-as patch",
"test": "nyc --check-coverage --reporter=html --reporter=text-summary mocha",
"test:examples": "npm run test:e2e-examples && npm run test:jest-examples && npm run test:mocha-examples && npm run test:ava-examples && npm run test:ts-examples && npm run test:message-examples",
"test:examples": "npm run test:e2e-examples && npm run test:jest-examples && npm run test:mocha-examples && npm run test:ava-examples && npm run test:ts-examples && npm run test:message-examples && npm run test:serverless-examples",
"test:e2e-examples": "cd examples/e2e && npm i && npm t",
"test:ava-examples": "cd examples/ava && npm i && npm t",
"test:jest-examples": "cd examples/jest && npm i && npm t",
"test:mocha-examples": "cd examples/mocha && npm i && npm t",
"test:ts-examples": "cd examples/typescript && npm i && npm t",
"test:message-examples": "cd examples/messages && npm i && npm t",
"test:serverless-examples": "cd examples/serverless && npm i && npm t",
"test:karma": "npm run test:karma:jasmine && npm run test:karma:mocha",
"test:karma:jasmine": "karma start ./karma/jasmine/karma.conf.js",
"test:karma:mocha": "karma start ./karma/mocha/karma.conf.js",
Expand Down

0 comments on commit 0d46776

Please sign in to comment.