Skip to content

Commit

Permalink
fix(experimentalIdentityAndAuth): fix test script to use jest (#1018)
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Yuan authored Oct 10, 2023
1 parent 6c53a93 commit a0957ef
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/clever-doors-joke.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@smithy/experimental-identity-and-auth": patch
---

Fix test script to use `jest`.
5 changes: 5 additions & 0 deletions packages/experimental-identity-and-auth/jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const base = require("../../jest.config.base.js");

module.exports = {
...base,
};
2 changes: 1 addition & 1 deletion packages/experimental-identity-and-auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
"lint": "eslint -c ../../.eslintrc.js \"src/**/*.ts\"",
"format": "prettier --config ../../prettier.config.js --ignore-path ../.prettierignore --write \"**/*.{ts,md,json}\"",
"test": "yarn g:tsc -p tsconfig.test.json",
"test": "yarn g:jest --passWithNoTests",
"test:integration": "yarn g:jest --config jest.config.integ.js --passWithNoTests"
},
"main": "./dist-cjs/index.js",
Expand Down

0 comments on commit a0957ef

Please sign in to comment.