Skip to content

Commit 862e55f

Browse files
committed
Tests
1 parent dd2681e commit 862e55f

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/develop-deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
build: yarn run build
3434
start: yarn run dev
3535
wait-on: "http://localhost:3000"
36-
browser: chrome
36+
browser: firefox
3737
build-s3:
3838
needs: build-test
3939
runs-on: neodash-runners

.github/workflows/develop-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ jobs:
3333
build: yarn run build
3434
start: yarn run dev
3535
wait-on: 'http://localhost:3000'
36-
browser: chrome
36+
browser: firefox
3737
- name: Upload coverage reports to Codecov
3838
uses: codecov/codecov-action@v3

cypress.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default defineConfig({
1313
},
1414
retries: {
1515
runMode: 2,
16-
openMode: 0,
16+
openMode: 2,
1717
},
1818
},
1919
env: {

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
],
2323
"scripts": {
2424
"dev": "yarn webpack-dev-server --mode development",
25+
"prod": "yarn webpack-dev-server --mode production",
2526
"debug": "yarn --node-options='--inspect' webpack-dev-server --mode development",
2627
"build": "yarn webpack --mode production --env production && cp -r public/* dist/",
2728
"build-minimal": "yarn webpack --mode production --env production && cp -r public/* dist/",

0 commit comments

Comments
 (0)