mirror of
https://github.com/jupyter/notebook.git
synced 2025-02-17 12:39:54 +08:00
11 lines
297 B
TypeScript
11 lines
297 B
TypeScript
|
import { test as base } from '@jupyterlab/galata';
|
||
|
|
||
|
export const test = base.extend({
|
||
|
waitForApplication: async ({ baseURL }, use, testInfo) => {
|
||
|
const waitIsReady = async (page): Promise<void> => {
|
||
|
await page.waitForSelector('#main-panel');
|
||
|
};
|
||
|
await use(waitIsReady);
|
||
|
}
|
||
|
});
|