Skip to content

Commit

Permalink
Fixed using CI env variable instead of TRAVIS in getBrowsers().
Browse files Browse the repository at this point in the history
  • Loading branch information
martnpaneq committed Aug 29, 2023
1 parent 91f720b commit 3cd1ca4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/utils/getkarmaconfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ function getBrowsers( browsers ) {
return browser;
}

return process.env.TRAVIS ? 'CHROME_CI' : 'CHROME_LOCAL';
return process.env.CI ? 'CHROME_CI' : 'CHROME_LOCAL';
} );
}

Expand Down

0 comments on commit 3cd1ca4

Please sign in to comment.