Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
spsjvc committed Jul 22, 2024
1 parent edbbedd commit 32b72f4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ jobs:
- name: Run e2e tests via cypress-io/github-action
uses: cypress-io/github-action@248bde77443c376edc45906ede03a1aba9da0462 # [email protected]
with:
start: 'yarn start'
command: 'CI=true yarn test:e2e'
start: yarn start
command: yarn test:e2e
wait-on: http://127.0.0.1:3000
wait-on-timeout: 120
browser: chrome
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
"start": "yarn workspace arb-token-bridge-ui start",
"audit:ci": "audit-ci --config ./audit-ci.jsonc",
"test:ci": "yarn workspace arb-token-bridge-ui test:ci",
"test:e2e": "yarn workspace arb-token-bridge-ui e2e:run --browser chrome",
"test:e2e:cctp": "yarn workspace arb-token-bridge-ui e2e:run:cctp --browser chrome",
"prettier:check": "./node_modules/.bin/prettier --check .",
"prettier:format": "./node_modules/.bin/prettier --write .",
"lint": "yarn workspace arb-token-bridge-ui lint",
"lint:fix": "yarn workspace arb-token-bridge-ui lint:fix"
"lint:fix": "yarn workspace arb-token-bridge-ui lint:fix",
"test:e2e": "env-cmd --silent --file ./packages/arb-token-bridge-ui/.e2e.env yarn synpress run --configFile ./packages/arb-token-bridge-ui/synpress.config.ts --browser chrome",
"test:e2e:cctp": "E2E_CCTP=true yarn test:e2e:run"
},
"resolutions": {
"**/@walletconnect/ethereum-provider": "2.13.1",
Expand Down
6 changes: 1 addition & 5 deletions packages/arb-token-bridge-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,7 @@
"prettier:format": "prettier --config-precedence file-override --write \"src/**/*.{tsx,ts,scss,md,json}\"",
"generateDenylist": "ts-node --project ./scripts/tsconfig.json ./scripts/generateDenylist.ts",
"generateCoreChainsToMonitor": "ts-node --project ./scripts/tsconfig.json ./scripts/generateCoreChainsToMonitor.ts",
"generateOrbitChainsToMonitor": "ts-node --project ./scripts/tsconfig.json ./scripts/generateOrbitChainsToMonitor.ts",
"e2e:env": "if [ \"$CI\" != \"true\" ]; then env-cmd -f .e2e.env; fi",
"e2e:open": "yarn e2e:env && yarn synpress open --configFile synpress.config.ts",
"e2e:run": "yarn e2e:env && yarn synpress run --configFile synpress.config.ts",
"e2e:run:cctp": "E2E_CCTP=true yarn e2e:run"
"generateOrbitChainsToMonitor": "ts-node --project ./scripts/tsconfig.json ./scripts/generateOrbitChainsToMonitor.ts"
},
"browserslist": {
"production": [
Expand Down

0 comments on commit 32b72f4

Please sign in to comment.