test: increase timeout for spellchecker (#28427)
This commit is contained in:
parent
5be2183dd7
commit
ff96fabe5e
1 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ const features = process._linkedBinding('electron_common_features');
|
|||
const v8Util = process._linkedBinding('electron_common_v8_util');
|
||||
|
||||
ifdescribe(features.isBuiltinSpellCheckerEnabled())('spellchecker', function () {
|
||||
this.timeout((process.env.IS_ASAN ? 100 : 20) * 1000);
|
||||
this.timeout((process.env.IS_ASAN ? 200 : 20) * 1000);
|
||||
|
||||
let w: BrowserWindow;
|
||||
|
||||
|
@ -33,7 +33,7 @@ ifdescribe(features.isBuiltinSpellCheckerEnabled())('spellchecker', function ()
|
|||
// to detect spellchecker is to keep checking with a busy loop.
|
||||
async function rightClickUntil (fn: (params: Electron.ContextMenuParams) => boolean) {
|
||||
const now = Date.now();
|
||||
const timeout = 10 * 1000;
|
||||
const timeout = (process.env.IS_ASAN ? 180 : 10) * 1000;
|
||||
let contextMenuParams = await rightClick();
|
||||
while (!fn(contextMenuParams) && (Date.now() - now < timeout)) {
|
||||
await delay(100);
|
||||
|
|
Loading…
Add table
Reference in a new issue