Skip to content

Commit

Permalink
unit test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann committed Jul 15, 2020
1 parent 5560c0d commit 903d503
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/webdriverio/tests/commands/browser.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const files = fs

test(scope + ' commands list and strategies', () => {
const prototype = Object.keys(getPrototype(scope))
const expected = [...files, 'strategies']
const expected = ['puppeteer', '_NOT_FIBER', ...files, 'strategies']

expect(prototype).toEqual(expected)
})
2 changes: 1 addition & 1 deletion packages/webdriverio/tests/commands/element.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const files = fs

test(scope + ' commands list and strategies', () => {
const prototype = Object.keys(getPrototype(scope))
const expected = [...files, 'strategies']
const expected = ['puppeteer', '_NOT_FIBER', ...files, 'strategies']

expect(prototype).toEqual(expected)
})

0 comments on commit 903d503

Please sign in to comment.