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

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
atti187 committed Nov 9, 2019
1 parent fc1378a commit 7fa0c7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"clean": "rimraf ./build",
"compile": "babel src/ -d build/ --config-file ./babel.config.js",
"test": "run-s test:*",
"test:eslint": "eslint src test",
"test:eslint": "eslint src tests",
"test:unit": "jest"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion tests/__mocks__/chromedriver.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
start: jest.fn((args, returnPromise) => new Promise((resolve, reject) => {
start: jest.fn(() => new Promise((resolve) => {
process.nextTick(() => resolve({
stdout: {
pipe: jest.fn()
Expand Down

0 comments on commit 7fa0c7c

Please sign in to comment.