Skip to content

Commit d13c776

Browse files
Copilothotlong
andcommitted
fix: remove test scripts from packages with no test files
@objectql/plugin-optimizations and @objectql/plugin-query had "test": "vitest run" scripts but no test files, causing vitest to exit with code 1 and failing the CI pipeline. Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
1 parent f1ede48 commit d13c776

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

packages/foundation/plugin-optimizations/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
},
1414
"files": ["dist"],
1515
"scripts": {
16-
"build": "tsc",
17-
"test": "vitest run"
16+
"build": "tsc"
1817
},
1918
"dependencies": {
2019
"@objectql/types": "workspace:*",

packages/foundation/plugin-query/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
},
1414
"files": ["dist"],
1515
"scripts": {
16-
"build": "tsc",
17-
"test": "vitest run"
16+
"build": "tsc"
1817
},
1918
"dependencies": {
2019
"@objectql/types": "workspace:*",

0 commit comments

Comments
 (0)