diff --git a/clients/client-transcribe-streaming/package.json b/clients/client-transcribe-streaming/package.json index f6efeda0fbc7..2f0917ff6d8b 100644 --- a/clients/client-transcribe-streaming/package.json +++ b/clients/client-transcribe-streaming/package.json @@ -13,8 +13,11 @@ "remove-js": "rimraf *.js && rimraf ./commands/*.js && rimraf ./models/*.js && rimraf ./protocols/*.js", "remove-maps": "rimraf *.js.map && rimraf ./commands/*.js.map && rimraf ./models/*.js.map && rimraf ./protocols/*.js.map", "test": "jest --coverage --passWithNoTests", + "test:integration": "jest --config jest.integ.config.js", + "build:cjs": "tsc", "build:es": "tsc -p tsconfig.es.json", - "build": "yarn build:cjs && yarn build:es" + "build": "yarn build:cjs && yarn build:es", + "postbuild": "cp test/speech.wav dist/cjs/test" }, "main": "./dist/cjs/index.js", "types": "./types/index.d.ts",