Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
yhatt committed Oct 31, 2024
1 parent ec8c073 commit 5ca2a2e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/browser/browsers/chrome.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ describe('ChromeBrowser', () => {

expect(puppeteer.launch).toHaveBeenCalledWith(
expect.objectContaining({
args: [expect.stringMatching(/^--user-data-dir=/), '--test-type'],
args: expect.arrayContaining([
expect.stringMatching(/^--user-data-dir=/),
]),
ignoreDefaultArgs: [],
})
)
Expand Down

0 comments on commit 5ca2a2e

Please sign in to comment.