File tree Expand file tree Collapse file tree 4 files changed +7
-1
lines changed Expand file tree Collapse file tree 4 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -27,4 +27,4 @@ opt-level = "s"
27
27
lto = true
28
28
29
29
[package .metadata .wasm-pack .profile .release ]
30
- wasm-opt = [" --enable-bulk-memory" , " --enable-nontrapping-float-to-int" ]
30
+ wasm-opt = [" -O " , " - -enable-bulk-memory" , " --enable-nontrapping-float-to-int" ]
Original file line number Diff line number Diff line change 135
135
"scripts" : {
136
136
"test" : " node ../scripts/run-tap.js" ,
137
137
"test:ci" : " CI=true node ../scripts/run-tap.js" ,
138
+ "test:new" : " node ../scripts/run-tap.js --test-new-instrumentation" ,
138
139
"build" : " tsc -p tsconfig.build.json" ,
139
140
"build:watch" : " tsc --watch -p tsconfig.build.json" ,
140
141
"lint" : " npm run lint-eslint && npm run lint-tsc && npm run check-format" ,
Original file line number Diff line number Diff line change 13
13
"watch" : " cd library && npm run build:watch" ,
14
14
"test" : " cd library && npm run test" ,
15
15
"test:ci" : " cd library && npm run test:ci" ,
16
+ "test:new" : " cd library && npm run test:new" ,
16
17
"lint" : " cd library && npm run lint" ,
17
18
"end2end" : " cd end2end && npm run test" ,
18
19
"format" : " prettier --write ." ,
Original file line number Diff line number Diff line change @@ -15,6 +15,10 @@ if (process.env.CI) {
15
15
args += " --coverage-report=lcov" ;
16
16
}
17
17
18
+ if ( process . argv . includes ( "--test-new-instrumentation" ) ) {
19
+ process . env . AIKIDO_TEST_NEW_INSTRUMENTATION = "true" ;
20
+ }
21
+
18
22
execSync ( `tap ${ args } ` , {
19
23
stdio : "inherit" ,
20
24
env : {
You can’t perform that action at this time.
0 commit comments