From b6fecd1d484b760ed6521fa4ce5666091f123e9c Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Tue, 10 Aug 2021 14:15:47 +0000 Subject: [PATCH] chore: remove build step prior to test --- .../software/amazon/smithy/typescript/codegen/base-package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/base-package.json b/smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/base-package.json index 185dfd67fd8..4629f6cf240 100644 --- a/smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/base-package.json +++ b/smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/base-package.json @@ -9,7 +9,7 @@ "remove-definitions": "rimraf ./types", "remove-dist": "rimraf ./dist", "remove-documentation": "rimraf ./docs", - "test": "yarn build && jest --coverage --passWithNoTests", + "test": "jest --coverage --passWithNoTests", "build:cjs": "tsc -p tsconfig.json", "build:es": "tsc -p tsconfig.es.json", "build": "yarn build:cjs && yarn build:es"