Last active
July 9, 2018 05:18
-
-
Save jsdecena/6b22237f581d5b54336bc37dd33eddd7 to your computer and use it in GitHub Desktop.
Bitbucket pipeline file for running test programatically
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
image: node:6.9.4 | |
pipelines: | |
branches: | |
master: | |
- step: | |
caches: | |
- node_modules | |
script: | |
- npm install | |
- npm run test --single-run | |
develop: | |
- step: | |
caches: | |
- node_modules | |
script: | |
- npm install | |
- npm run test --single-run | |
/** | |
* 09 07 2018 04:43:16.157:WARN [launcher]: ChromeHeadless have not captured in 60000 ms, killing. | |
* 09 07 2018 04:43:18.162:WARN [launcher]: ChromeHeadless was not killed in 2000 ms, sending SIGKILL. | |
* 09 07 2018 04:43:20.165:WARN [launcher]: ChromeHeadless was not killed by SIGKILL in 2000 ms, continuing. | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment