Skip to content

Commit 938f231

Browse files
Merge pull request #631 from fippo/fix-karma
test: fix karma config
2 parents 2a983cd + d97ac29 commit 938f231

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/karma.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ if (os.platform() === 'darwin' && process.env.BVER === 'unstable' &&
4242
}
4343

4444
if (!process.env.FIREFOX_BIN) {
45-
process.env.FIREFOX_BIN = os.cwd() + '/browsers/bin/firefox-'
45+
process.env.FIREFOX_BIN = process.cwd() + '/browsers/bin/firefox-'
4646
+ (process.env.BVER || 'stable');
4747
}
4848
if (!process.env.CHROME_BIN) {
49-
process.env.CHROME_BIN = os.cwd() + '/browsers/bin/chrome-'
49+
process.env.CHROME_BIN = process.cwd() + '/browsers/bin/chrome-'
5050
+ (process.env.BVER || 'stable');
5151
}
5252

0 commit comments

Comments
 (0)