Skip to content

Commit 930cdc6

Browse files
committed
chore: add integration test script to project root
1 parent 3c128cd commit 930cdc6

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

jest.config.integ.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
const base = require("./jest.config.base.js");
2+
3+
module.exports = {
4+
...base,
5+
projects: ["<rootDir>/clients/*/jest.integ.config.js"],
6+
testPathIgnorePatterns: ["/node_modules/"],
7+
coveragePathIgnorePatterns: ["/node_modules/", "/__fixtures__/"]
8+
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"pretest:all": "yarn build:all",
1818
"test:all": "jest --coverage --passWithNoTests && lerna run test --scope @aws-sdk/fetch-http-handler --scope @aws-sdk/hash-blob-browser",
1919
"test:functional": "jest --config tests/functional/jest.config.js --passWithNoTests",
20-
"test:integration": "cucumber-js --fail-fast",
20+
"test:integration": "cucumber-js --fail-fast && jest --config jest.config.integ.js --passWithNoTests",
2121
"test:protocols": "yarn build:protocols && lerna run test --scope '@aws-sdk/aws-*'"
2222
},
2323
"repository": {

0 commit comments

Comments
 (0)