Skip to content

Commit

Permalink
test(electron): use legacy-peer-deps for electron tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yousif-bugsnag committed Oct 2, 2024
1 parent 7837f1b commit 1648634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/electron/features/support/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const { spawn } = require('child_process')
const defaultFixturePath = join(__dirname, '../../fixtures/app')

const npmRunner = process.platform === 'win32' ? 'npm.cmd' : 'npm'
const installArgs = ['install', '--progress=false', '--no-audit', '--omit=optional', '--no-save']
const installArgs = ['install', '--progress=false', '--no-audit', '--omit=optional', '--no-save', '--legacy-peer-deps']
const log = (msg, ...args) => console.log(` [TestApp] ${msg}`, ...args)

class TestApp {
Expand Down

0 comments on commit 1648634

Please sign in to comment.