diff --git a/smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/CodegenVisitor.java b/smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/CodegenVisitor.java index 5ee7341ffc7..09722381e22 100644 --- a/smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/CodegenVisitor.java +++ b/smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/CodegenVisitor.java @@ -70,7 +70,6 @@ class CodegenVisitor extends ShapeVisitor.Default { * A mapping of static resource files to copy over to a new filename. */ private static final Map STATIC_FILE_COPIES = MapUtils.of( - "jest.config.js", "jest.config.js", "tsconfig.json", "tsconfig.json", "tsconfig.es.json", "tsconfig.es.json", "tsconfig.types.json", "tsconfig.types.json" 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 4d8ef2a9469..8cc7d1ccc63 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 @@ -11,8 +11,7 @@ "clean": "${packageManager} clean:dist && ${packageManager} clean:docs", "clean:dist": "rimraf ./dist-*", "clean:docs": "rimraf ./docs", - "downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4", - "test": "jest --coverage --passWithNoTests" + "downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4" }, "main": "./dist-cjs/index.js", "types": "./dist-types/index.d.ts", @@ -23,9 +22,7 @@ }, "devDependencies": { "downlevel-dts": "0.7.0", - "jest": "^26.1.0", "rimraf": "^3.0.0", - "ts-jest": "^26.4.1", "typedoc": "^0.19.2", "typescript": "~4.3.5" }, diff --git a/smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/jest.config.js b/smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/jest.config.js deleted file mode 100644 index 02eed352c6a..00000000000 --- a/smithy-typescript-codegen/src/main/resources/software/amazon/smithy/typescript/codegen/jest.config.js +++ /dev/null @@ -1,4 +0,0 @@ -module.exports = { - preset: "ts-jest", - testMatch: ["**/*.spec.ts", "!**/*.browser.spec.ts", "!**/*.integ.spec.ts"], -};