Skip to content

Commit 63f6d8a

Browse files
committed
Filter tsc from test scripts
TypeScript compilation failures were causing false negatives in package tests. The tsc command is now filtered out along with other linting and type checking commands.
1 parent 16be9ad commit 63f6d8a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/utils/script-cleaning.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function cleanTestScript(testScript) {
1111
const parts = cleaned.split(/\s*&&\s*/)
1212
const filtered = parts.filter(
1313
part =>
14-
!/\b(?:biome|check|cleanup|eslint|format|lint|posttest|prepare|prepublish|standard|tslint|validate|xo)\b/.test(
14+
!/\b(?:biome|check|cleanup|eslint|format|lint|posttest|prepare|prepublish|standard|tsc|tslint|validate|xo)\b/.test(
1515
part,
1616
),
1717
)

0 commit comments

Comments
 (0)