Skip to content

Commit

Permalink
Removing double-dash from yarn commands
Browse files Browse the repository at this point in the history
  • Loading branch information
evertonfraga committed Nov 14, 2020
1 parent 83da508 commit 115c8d3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/vm-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
- run: yarn run build:vm
working-directory: ${{github.workspace}}

- run: yarn run test:state -- --fork=${{ matrix.fork }} --verify-test-amount-alltests
- run: yarn run test:state --fork=${{ matrix.fork }} --verify-test-amount-alltests

test-vm-blockchain:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion packages/vm/developer.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Use `--fork` to pass in the desired hardfork:

or

`yarn run test:state -- --fork='Constantinople'`
`yarn run test:state --fork='Constantinople'`

By default it is set to use the latest hardfork (`FORK_CONFIG` in `tests/tester.js`).

Expand Down
4 changes: 2 additions & 2 deletions packages/vm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"coverage:test": "tape -r ts-node/register './tests/api/**/*.ts' ./tests/tester.ts --state",
"docs:build": "typedoc --options typedoc.js",
"test:state": "ts-node ./tests/tester --state",
"test:state:allForks": "echo 'Chainstart Homestead dao TangerineWhistle SpuriousDragon Byzantium Constantinople Petersburg Istanbul MuirGlacier Berlin ByzantiumToConstantinopleFixAt5 EIP158ToByzantiumAt5 FrontierToHomesteadAt5 HomesteadToDaoAt5 HomesteadToEIP150At5' | xargs -n1 | xargs -I v1 yarn run test:state -- --fork=v1 --verify-test-amount-alltests",
"test:state:selectedForks": "echo 'Homestead TangerineWhistle SpuriousDragon Petersburg' | xargs -n1 | xargs -I v1 yarn run test:state -- --fork=v1 --verify-test-amount-alltests",
"test:state:allForks": "echo 'Chainstart Homestead dao TangerineWhistle SpuriousDragon Byzantium Constantinople Petersburg Istanbul MuirGlacier Berlin ByzantiumToConstantinopleFixAt5 EIP158ToByzantiumAt5 FrontierToHomesteadAt5 HomesteadToDaoAt5 HomesteadToEIP150At5' | xargs -n1 | xargs -I v1 yarn run test:state --fork=v1 --verify-test-amount-alltests",
"test:state:selectedForks": "echo 'Homestead TangerineWhistle SpuriousDragon Petersburg' | xargs -n1 | xargs -I v1 yarn run test:state --fork=v1 --verify-test-amount-alltests",
"test:state:slow": "yarn run test:state -- --runSkipped=slow",
"test:buildIntegrity": "yarn run test:state -- --test='stackOverflow'",
"test:blockchain": "node -r ts-node/register --stack-size=1500 ./tests/tester --blockchain",
Expand Down

0 comments on commit 115c8d3

Please sign in to comment.