Skip to content

Commit 854020d

Browse files
committed
Run unit tests without integration tests for now
Change-Id: Ia2d0b6a6d76eba3f7d11e3b99d62f07722c83eed
1 parent 9485922 commit 854020d

1 file changed

Lines changed: 5 additions & 10 deletions

File tree

dev/release/js-verify-release-candidate.sh

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -90,16 +90,11 @@ tar xvzf ${DIST_NAME}.tar.gz
9090
cd ${DIST_NAME}
9191

9292
npm install
93-
# clean, lint, and build JS source
94-
npm run clean:all
95-
npm run lint
96-
npm run build
97-
# create initial integration test data
98-
npm run create:testdata
99-
# run once to write the snapshots
100-
npm test -- -t ts -u --integration
101-
# run again to test all builds against the snapshots
102-
npm test -- --integration
93+
# npx run-s clean:all lint create:testdata build
94+
# npm run test -- -t ts -u --integration
95+
# npm run test -- --integration
96+
npx run-s clean:all lint build
97+
npm run test
10398

10499
echo 'Release candidate looks good!'
105100
exit 0

0 commit comments

Comments
 (0)