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 71f3169 commit 2278246Copy full SHA for 2278246
src/lib/ctx.ts
@@ -120,9 +120,9 @@ export default (options: Record<string, string>): Context => {
120
}
121
122
//if config.waitForPageRender has value and if its less than 30000 then make it to 30000 default
123
- // if (config.waitForPageRender && config.waitForPageRender < 30000) {
124
- // config.waitForPageRender = 30000;
125
- // }
+ if (config.waitForPageRender && config.waitForPageRender < 30000) {
+ config.waitForPageRender = 30000;
+ }
126
127
return {
128
env: env,
0 commit comments