Skip to content

Commit

Permalink
Update pipelines.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettmflynn committed May 28, 2024
1 parent 06cdfab commit 498018c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/e2e/pipelines.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import examplePipelines from "../../src/example_pipelines.yml";
import paths from "../../src/paths.config.json" assert { type: "json" };
import { evaluate, initTests, takeScreenshot } from './utils'
import { header } from '../../src/electron/renderer/src/stories/forms/utils'
import { sleep } from '../puppeteer';

// NOTE: We assume the user has put the GIN data in ~/NWB_GUIDE/test-data/GIN
const testGINPath = join(homedir(), paths.root, 'test-data', 'GIN')
Expand All @@ -35,7 +36,7 @@ describe('Run example pipelines', () => {
// Transition to settings page
const dashboard = document.querySelector('nwb-dashboard')
dashboard.sidebar.select('settings')
await new Promise(resolve => setTimeout(resolve, 200))
await new Promise(resolve => setTimeout(resolve, 500))

const page = dashboard.page

Expand Down

0 comments on commit 498018c

Please sign in to comment.