File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1919
2020 - name : ' Install dependencies'
2121 run : npm ci
22- - name : ' build '
22+ - name : ' Build '
2323 run : npm run build
24+ - name : ' Prepare Fixtures'
25+ run : npm run pretest
2426 - name : ' Test'
2527 run : npm run test:ci -- --shard=${{ matrix.shard }}
Original file line number Diff line number Diff line change @@ -17,4 +17,5 @@ How to add new integration test scenarios to the application:
17174 . Add your test
1818
1919> Currently the tests require a built version of the ` dist/run/handlers/cache.cjs ` so you need to
20- > run ` npm run build ` before executing the integration tests.
20+ > run ` npm run build ` before executing the integration tests. In addition, the integration tests
21+ > need to be prepared before first use. You can do this by running ` npm run pretest ` .
Original file line number Diff line number Diff line change 1313 "node" : " >=16.0.0"
1414 },
1515 "scripts" : {
16- "postinstall " : " node tests/prepare.mjs" ,
16+ "pretest " : " node tests/prepare.mjs" ,
1717 "build" : " tsc" ,
1818 "build:debug" : " tsc --sourceMap" ,
1919 "build:watch" : " tsc --watch" ,
You can’t perform that action at this time.
0 commit comments