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:
Pierre Ossman 2024-06-13 08:38:00 +02:00
parent aead0b2f89
commit fb1817c99f
1 changed files with 0 additions and 7 deletions

View File

@ -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);
};