Skip to content

Commit 8f57fd4

Browse files
chore: add missing npm script to fix npm t
`test:integration` was missing; this redirects it to most useful fast integration test for convenience of testing via `npm t`. This is a benefit to local dev, since `npm t` isn't currently used in CI
1 parent fdfde46 commit 8f57fd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"main": "dist/index.js",
55
"scripts": {
66
"pretest": "./scripts/docker/build-image.sh",
7-
"test": "npm run lint && npm run build && npm run test:unit && npm run test:integration",
7+
"test": "npm run lint && npm run build && npm run test:unit && npm run test:integration:kind:helm",
88
"test:unit": "NODE_ENV=test tap test/unit --timeout=300",
99
"test:system": "tap test/system --timeout=600",
1010
"test:integration:kind:yaml": "DEPLOYMENT_TYPE=YAML TEST_PLATFORM=kind CREATE_CLUSTER=true tap test/integration/kubernetes.test.ts --timeout=900",

0 commit comments

Comments
 (0)