diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-05-14 20:57:39 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-14 20:57:39 +0900 |
commit | e9a6fb85583a891cba2683f2abb05f34e13bff43 (patch) | |
tree | f9879006fc6475a1cf9fd98bffd1b9541f5aa4c9 /.circleci/config.yml | |
parent | c6c885345e212bedc2723e9105488d3e5fe9f8be (diff) | |
parent | a8d3de42434153d90eebdcceb536ce0537c9167f (diff) |
Merge pull request #392 from ueokande/e2e-testing
Add e2e test cases
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 5882b7c..bab1bf8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,7 +4,7 @@ jobs: docker: - image: circleci/node:9-stretch-browsers environment: - - FIREFOX_VERSION: "59.0b9" + - FIREFOX_VERSION: "59.0.3" working_directory: ~ steps: - restore_cache: @@ -42,4 +42,4 @@ jobs: - run: npm run package - run: npm run build - run: npm run ambassador:build - - run: node e2e/web-server & npm run test:e2e + - run: node >/dev/null e2e/web-server & npm run test:e2e |