diff --git a/package.json b/package.json index d0f36e9e4..17e5c7dbb 100644 --- a/package.json +++ b/package.json @@ -189,7 +189,7 @@ "pack:fast": "node --max_old_space_size=10196 ./node_modules/webpack/bin/webpack.js --mode development --progress", "copyToConsumers": "node copyToConsumers", "test": "rimraf coverage && jest", - "test:e2e": "jest -c ./jest.config.e2e.js --detectOpenHandles", + "test:e2e": "jest -c ./jest.config.e2e.js --detectOpenHandles test/notebooks/uploadOpenAndDeleteNotebook.spec.ts", "watch": "npm run start", "wait-for-server": "wait-on -t 240000 -i 5000 -v https-get://0.0.0.0:1234/", "build:ase": "gulp build:ase", diff --git a/test/notebooks/notebookTestUtils.ts b/test/notebooks/notebookTestUtils.ts index ff041b918..2e895650a 100644 --- a/test/notebooks/notebookTestUtils.ts +++ b/test/notebooks/notebookTestUtils.ts @@ -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 => {