Remove Chrome timeout workaround
This is a revert of fca48df85d
. The issue
seems to be fixed in the current version of Chrome, so let's keep things
simple again.
This commit is contained in:
parent
aead0b2f89
commit
fb1817c99f
|
@ -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);
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue