Skip to content

Commit 4a49c73

Browse files
authored
dev: Add typecheck to npm run test-unit. (#19251)
This ensures that TypeScript typechecking happens on calls to test-unit.
1 parent 434163f commit 4a49c73

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

web-console/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"test": "npm run test-base -- --silent 2>&1",
1818
"test-ci": "npm run test-base -- --coverage",
1919
"test-e2e": "jest --runInBand --config jest.e2e.config.js e2e-tests",
20-
"test-unit": "./script/build-sql-docs && npm run eslint && npm run sasslint && npm run prettify-check && jest --config jest.config.js --testPathIgnorePatterns='e2e-tests'",
20+
"test-unit": "./script/build-sql-docs && npm run typecheck && npm run eslint && npm run sasslint && npm run prettify-check && jest --config jest.config.js --testPathIgnorePatterns='e2e-tests'",
2121
"codecov": "codecov --disable=gcov -p ..",
2222
"coverage": "jest --coverage src",
2323
"update-snapshots": "jest -u --config jest.config.js",

0 commit comments

Comments
 (0)