Skip to content

Commit 515858e

Browse files
committed
Initial E2E tests for SnarkyJS Web version.
1 parent 1cde74a commit 515858e

File tree

8 files changed

+515
-4
lines changed

8 files changed

+515
-4
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2121

2222
- `reducer.getActions` partially implemented for local testing https://github.com/o1-labs/snarkyjs/pull/327
2323
- `gte` and `assertGte` methods on `UInt32`, `UInt64` https://github.com/o1-labs/snarkyjs/pull/349
24+
- Return sent transaction `hash` for `RemoteBlockchain` https://github.com/o1-labs/snarkyjs/pull/399
25+
- Initial E2E tests for `SnarkyJS` PR_TBA
2426

2527
### Changed
2628

package-lock.json

+195
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+11-4
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,13 @@
3131
"type-check": "tsc --noEmit",
3232
"dev": "npx tsc -p tsconfig.node.json && cp src/snarky.d.ts dist/node/snarky.d.ts",
3333
"make": "make -C ../../../.. snarkyjs",
34-
"build": "rm -rf dist/node && npx tsc -p tsconfig.node.json && cp -r src/node_bindings dist/node/_node_bindings && node src/build/buildNode.js && cp src/snarky.d.ts dist/node/snarky.d.ts",
35-
"build:test": "rm -rf dist/test && npx tsc -p tsconfig.test.json && cp -r src/node_bindings dist/test/_node_bindings && cp src/snarky.d.ts dist/test/snarky.d.ts",
34+
"build": "rimraf ./dist/node && npx tsc -p tsconfig.node.json && cp -r src/node_bindings dist/node/_node_bindings && node src/build/buildNode.js && cp src/snarky.d.ts dist/node/snarky.d.ts",
35+
"build:test": "rimraf ./dist/test && npx tsc -p tsconfig.test.json && cp -r src/node_bindings dist/test/_node_bindings && cp src/snarky.d.ts dist/test/snarky.d.ts",
3636
"build:node": "npm run build",
37-
"build:web": "rm -rf dist/web && node src/build/buildWeb.js",
37+
"build:web": "rimraf ./dist/web && node src/build/buildWeb.js",
38+
"build:examples": "rimraf ./dist/examples && npx tsc -p tsconfig.examples.json || exit 0",
3839
"serve:web": "cp src/chrome_bindings/server.py src/chrome_bindings/index.html dist/web && cd dist/web && python3 server.py",
40+
"serve:web-e2e": "(cp -rf dist/examples dist/web || :) ; node src/build/e2eTestsBuildHelper.js ; cp -rf src/chrome_bindings/server.py tests/artifacts/html/*.html tests/artifacts/javascript/*.js dist/web && cd dist/web && python3 server.py",
3941
"prepublish:web": "NODE_ENV=production node src/build/buildWeb.js",
4042
"prepublish:node": "npm run build && NODE_ENV=production node src/build/buildNode.js",
4143
"prepublish:both": "npm run prepublish:web && npm run prepublish:node",
@@ -45,10 +47,14 @@
4547
"test": "for f in ./src/**/*.test.ts; do NODE_OPTIONS=--experimental-vm-modules npx jest $f || exit 1; done",
4648
"clean": "rimraf ./dist",
4749
"test:integration": "./run-integration-tests.sh",
48-
"test:unit": "./run-unit-tests.sh"
50+
"test:unit": "./run-unit-tests.sh",
51+
"test:e2e": "npx playwright test",
52+
"e2e:install": "npx playwright install --with-deps",
53+
"e2e:show-report": "npx playwright show-report"
4954
},
5055
"author": "O(1) Labs",
5156
"devDependencies": {
57+
"@playwright/test": "^1.25.2",
5258
"@types/isomorphic-fetch": "^0.0.36",
5359
"@types/jest": "^27.0.0",
5460
"@types/node": "^18.7.13",
@@ -61,6 +67,7 @@
6167
"jest": "^28.1.3",
6268
"minimist": "^1.2.5",
6369
"prettier": "^2.3.2",
70+
"replace-in-file": "^6.3.5",
6471
"rimraf": "^3.0.2",
6572
"ts-jest": "^28.0.8",
6673
"typedoc": "^0.23.11",

0 commit comments

Comments
 (0)