From 33ae999ddc91e9570b86362ab4273c407d863d01 Mon Sep 17 00:00:00 2001 From: Mehul Kar Date: Mon, 15 May 2023 16:43:29 -0700 Subject: [PATCH] ci: Remove test script from package that has no tests (#4958) This fails the smoke test before publish because `jest` exits with `1` when there are no tests. --- packages/turbo-gen/package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/turbo-gen/package.json b/packages/turbo-gen/package.json index ab1691d4b03f5..ec2a0852adb5a 100644 --- a/packages/turbo-gen/package.json +++ b/packages/turbo-gen/package.json @@ -16,7 +16,6 @@ "types": "dist/types.d.ts", "scripts": { "build": "tsup", - "test": "jest", "lint": "eslint src/**/*.ts", "check-types": "tsc --noEmit" },