Commit f4f11f01 authored by Will Cory's avatar Will Cory

make it not flaky

parent 6571cd72
...@@ -568,10 +568,10 @@ jobs: ...@@ -568,10 +568,10 @@ jobs:
working_directory: packages/atst working_directory: packages/atst
- run: - run:
name: make sure anvil l1 is up name: make sure anvil l1 is up
command: cast block-number --rpc-url http://localhost:8545 command: npx wait-on tcp:8545 && cast block-number --rpc-url http://localhost:8545
- run: - run:
name: make sure anvil l2 is up name: make sure anvil l2 is up
command: cast block-number --rpc-url http://localhost:9545 command: npx wait-on tcp:9545 && cast block-number --rpc-url http://localhost:9545
- run: - run:
name: test:next name: test:next
command: yarn test:next command: yarn test:next
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment