Add tests for the Revive WASM version (#147)

This commit is contained in:
Sebastian Miasojed
2025-01-10 09:12:43 +01:00
committed by GitHub
parent f49d145e9a
commit d7d60da6f1
7 changed files with 199 additions and 18 deletions
+7 -2
View File
@@ -7,9 +7,14 @@
"scripts": {
"fetch:soljson": "wget https://binaries.soliditylang.org/wasm/soljson-v0.8.28+commit.7893614a.js -O ./examples/web/soljson.js",
"example:web": "npm run fetch:soljson && http-server ./examples/web/",
"example:node": "node ./examples/node/run_revive.js"
"example:node": "node ./examples/node/run_revive.js",
"test:node": "mocha --timeout 10000 ./tests",
"test:bun": "bun test",
"test:all": "npm run test:node && npm run test:bun"
},
"devDependencies": {
"http-server": "^14.1.1"
"chai": "^5.1.2",
"http-server": "^14.1.1",
"mocha": "^11.0.1"
}
}