increased delay for render

This commit is contained in:
Srinath Narayanan
2020-11-18 13:29:21 -08:00
parent 92fd5a73e6
commit fe3e5f9383
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ import { ElementHandle, Frame } from "puppeteer";
import { TestExplorerParams } from "./testExplorer/TestExplorerParams";
export const NOTEBOOK_OPERATION_DELAY = 5000;
export const RENDER_DELAY = 1000;
export const RENDER_DELAY = 2500;
let testExplorerFrame: Frame;
export const getTestExplorerFrame = async (): Promise<Frame> => {