Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

Commit

Permalink
Merge pull request #3 from adobe/jest
Browse files Browse the repository at this point in the history
Moving tests to jest
  • Loading branch information
Himavanth authored May 28, 2019
2 parents 8923418 + 2b2d244 commit 15a81bb
Show file tree
Hide file tree
Showing 7 changed files with 10,167 additions and 10 deletions.
21 changes: 21 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"env": {
"node": true,
"es6": true,
"jest": true
},
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"plugins": [
"jest"
],
"extends": [
"plugin:jest/recommended",
"eslint:recommended"
],
"rules": {
"no-var": 2
}
}
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node_modules
coverage
openwhisk-passport-auth-*
package-lock.json
actions-auth-passport-*
junit.xml
1 change: 1 addition & 0 deletions jest.setup.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
jest.setTimeout(10000)
Loading

0 comments on commit 15a81bb

Please sign in to comment.