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.
2 parents c82db45 + e1a4603 commit 8edad96Copy full SHA for 8edad96
src/lib/ctx.ts
@@ -101,6 +101,11 @@ export default (options: Record<string, string>): Context => {
101
useLambdaInternal = true;
102
}
103
104
+ //if config.waitForPageRender has value and if its less than 30000 then make it to 30000 default
105
+ if (config.waitForPageRender && config.waitForPageRender < 30000) {
106
+ config.waitForPageRender = 30000;
107
+ }
108
+
109
return {
110
env: env,
111
log: logger,
0 commit comments