Skip to content

Commit

Permalink
update install command
Browse files Browse the repository at this point in the history
  • Loading branch information
gingerbenw committed Apr 22, 2024
1 parent 8425712 commit 76e21fa
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', '--no-optional', '--no-save', '--legacy-peer-deps']
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 76e21fa

Please sign in to comment.