|
31 | 31 | "type-check": "tsc --noEmit",
|
32 | 32 | "dev": "npx tsc -p tsconfig.node.json && cp src/snarky.d.ts dist/node/snarky.d.ts",
|
33 | 33 | "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", |
36 | 36 | "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", |
38 | 39 | "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", |
39 | 41 | "prepublish:web": "NODE_ENV=production node src/build/buildWeb.js",
|
40 | 42 | "prepublish:node": "npm run build && NODE_ENV=production node src/build/buildNode.js",
|
41 | 43 | "prepublish:both": "npm run prepublish:web && npm run prepublish:node",
|
|
45 | 47 | "test": "for f in ./src/**/*.test.ts; do NODE_OPTIONS=--experimental-vm-modules npx jest $f || exit 1; done",
|
46 | 48 | "clean": "rimraf ./dist",
|
47 | 49 | "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" |
49 | 54 | },
|
50 | 55 | "author": "O(1) Labs",
|
51 | 56 | "devDependencies": {
|
| 57 | + "@playwright/test": "^1.25.2", |
52 | 58 | "@types/isomorphic-fetch": "^0.0.36",
|
53 | 59 | "@types/jest": "^27.0.0",
|
54 | 60 | "@types/node": "^18.7.13",
|
|
61 | 67 | "jest": "^28.1.3",
|
62 | 68 | "minimist": "^1.2.5",
|
63 | 69 | "prettier": "^2.3.2",
|
| 70 | + "replace-in-file": "^6.3.5", |
64 | 71 | "rimraf": "^3.0.2",
|
65 | 72 | "ts-jest": "^28.0.8",
|
66 | 73 | "typedoc": "^0.23.11",
|
|
0 commit comments