mirror of
https://github.com/jupyter/notebook.git
synced 2024-11-21 01:11:21 +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);
|
|
}
|
|
});
|