-
Notifications
You must be signed in to change notification settings - Fork 5.2k
/
Copy pathtree.spec.ts
50 lines (37 loc) · 1.45 KB
/
tree.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.
import { test } from './fixtures';
import { expect } from '@jupyterlab/galata';
const SUBFOLDER = 'subfolder';
test('Tree', async ({ page }) => {
await page.goto('tree');
const button = await page.$('text="New Notebook"');
expect(button).toBeDefined();
});
test('should go to subfolder', async ({ page, tmpPath }) => {
const dir = `${tmpPath}/${SUBFOLDER}`;
await page.contents.createDirectory(dir);
await page.goto(`tree/${dir}`);
expect(
await page.waitForSelector(`.jp-FileBrowser-crumbs >> text=/${SUBFOLDER}/`)
).toBeTruthy();
});
test('should update url when navigating in filebrowser', async ({
page,
tmpPath,
}) => {
await page.contents.createDirectory(`${tmpPath}/${SUBFOLDER}`);
await page.dblclick(`.jp-FileBrowser-listing >> text=${SUBFOLDER}`);
await page.waitForSelector(`.jp-FileBrowser-crumbs >> text=/${SUBFOLDER}/`);
const url = new URL(page.url());
expect(url.pathname).toEqual(`/tree/${tmpPath}/${SUBFOLDER}`);
});
test('Should activate file browser tab', async ({ page, tmpPath }) => {
await page.goto(`tree/${tmpPath}`);
await page.locator('.jp-TreePanel >> text="Running"').click();
await expect(
page.locator('#main-panel #jp-running-sessions-tree')
).toBeVisible();
await page.menu.clickMenuItem('View>File Browser');
await expect(page.locator('#main-panel #filebrowser')).toBeVisible();
});