Skip to content

Commit

Permalink
Remove Chrome timeout workaround
Browse files Browse the repository at this point in the history
This is a revert of fca48df. The issue
seems to be fixed in the current version of Chrome, so let's keep things
simple again.
  • Loading branch information
CendioOssman committed Jun 13, 2024
1 parent aead0b2 commit fb1817c
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,5 @@ module.exports = (config) => {
singleRun: true,
};

if (process.env.TEST_BROWSER_NAME === 'ChromeHeadless') {
let os = require('os');
if (os.platform() === 'win32') {
my_conf.client.mocha['timeout'] = 5000;
}
}

config.set(my_conf);
};

0 comments on commit fb1817c

Please sign in to comment.