Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds generic ssz spec tests #2684

Merged
merged 11 commits into from
Jun 12, 2021
Prev Previous commit
Next Next commit
Add test:ssz-generic script
wemeetagain committed Jun 10, 2021
commit 3735dde5f668fdd9043a64f636fe4c950fdeb975
3 changes: 2 additions & 1 deletion packages/spec-test-runner/package.json
Original file line number Diff line number Diff line change
@@ -22,9 +22,10 @@
"scripts": {
"check-types": "tsc --noEmit",
"download-test-cases": "node -r ts-node/register test/downloadTests.ts",
"test:ssz-generic": "mocha 'test/spec/ssz/generic/index.test.ts'",
"test:ssz-minimal": "LODESTAR_PRESET=minimal mocha 'test/spec/ssz/**/*minimal.test.ts'",
"test:ssz-mainnet": "exit",
"test:ssz": "yarn test:ssz-minimal && yarn test:ssz-mainnet",
"test:ssz": "yarn test:ssz-generic && yarn test:ssz-minimal && yarn test:ssz-mainnet",
"test:bls": "mocha 'test/spec/bls/**/*.test.ts'",
"test:spec": "yarn test:ssz && yarn test:bls && yarn test:spec-phase0 && yarn test:spec-altair",
"test:spec-altair-minimal": "LODESTAR_PRESET=minimal mocha 'test/spec/altair/**/*minimal.test.ts'",