Skip to content

Commit

Permalink
Revert changes within provider
Browse files Browse the repository at this point in the history
  • Loading branch information
plumdog committed Nov 25, 2020
1 parent 5c66167 commit 09cf092
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions provider/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
module.exports = {
roots: ['<rootDir>/tests'],
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest',
"roots": [
"<rootDir>/tests"
],
testMatch: [ '**/*.test.ts'],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
};
}
2 changes: 1 addition & 1 deletion provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"compile": "npm run clean && npm run -- tsc --outDir build/ --declaration false && npm run get-sops && cp -R ./sops ./build/",
"quick-compile": "npm run -- tsc --outDir build/ --declaration false && ([[ -f ./sops ]] || npm run get-sops) && cp ./sops ./build/",
"test": "jest",
"lint": "eslint 'index.ts' 'tests/**/*.ts' jest.config.js --quiet --fix",
"lint": "eslint 'index.ts' 'tests/**/*.ts' --quiet --fix",
"lint-check": "eslint 'index.ts' 'tests/**/*.ts' --max-warnings 0"
},
"dependencies": {
Expand Down

0 comments on commit 09cf092

Please sign in to comment.