We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d3053f commit b199c22Copy full SHA for b199c22
3 files changed
src/Client.js
@@ -307,21 +307,17 @@ class Client extends EventEmitter {
307
webCacheOptions,
308
);
309
310
- await webCache.persist(
311
- this.currentIndexHtml,
312
- version,
313
- );
+ await webCache.persist(this.currentIndexHtml, version);
314
}
315
316
//Load util functions (serializers, helper functions)
317
await this.pupPage.evaluate(LoadUtils);
318
319
// Check window.WWebJS Injection
320
await this.pupPage
321
- .waitForFunction(
322
- 'window.WWebJS != undefined',
323
- { timeout: 30000 },
324
- )
+ .waitForFunction('window.WWebJS != undefined', {
+ timeout: 30000,
+ })
325
.catch(() => {
326
throw 'ready timeout';
327
});
tests/ab-comparison.js
0 commit comments