Skip to content

Commit

Permalink
feat: add open_browser env var for testing (#269)
Browse files Browse the repository at this point in the history
  • Loading branch information
nrkruk authored Nov 25, 2024
1 parent 8467ae7 commit d4d3778
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/lightning/dev/site.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default class LightningDevSite extends SfCommand<void> {
const startupParams: LocalDevOptions = {
sfCLI: true,
authToken,
open: true,
open: process.env.OPEN_BROWSER === 'false' ? false : true,
port,
logLevel: 'error',
mode: 'dev',
Expand Down

0 comments on commit d4d3778

Please sign in to comment.