-
Notifications
You must be signed in to change notification settings - Fork 5.2k
/
Copy patheditor.spec.ts
69 lines (52 loc) · 1.71 KB
/
editor.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License.
import path from 'path';
import { test } from './fixtures';
import { expect } from '@jupyterlab/galata';
const FILE = 'environment.yml';
test.use({ autoGoto: false });
const processRenameDialog = async (page, prevName: string, newName: string) => {
// Rename in the input dialog
await page
.locator(`text=File Path${prevName}New Name >> input`)
.fill(newName);
await Promise.all([
await page.click('text="Rename"'),
// wait until the URL is updated
await page.waitForNavigation(),
]);
};
test.describe('Editor', () => {
test.beforeEach(async ({ page, tmpPath }) => {
await page.contents.uploadFile(
path.resolve(__dirname, `../../binder/${FILE}`),
`${tmpPath}/${FILE}`
);
});
test('Renaming the file by clicking on the title', async ({
page,
tmpPath,
}) => {
const file = `${tmpPath}/${FILE}`;
await page.goto(`edit/${file}`);
// Click on the title
await page.click(`text="${FILE}"`);
const newName = 'test.yml';
await processRenameDialog(page, FILE, newName);
// Check the URL contains the new name
const url = page.url();
expect(url).toContain(newName);
});
test('Renaming the file via the menu entry', async ({ page, tmpPath }) => {
const file = `${tmpPath}/${FILE}`;
await page.goto(`edit/${file}`);
// Click on the title
await page.menu.clickMenuItem('File>Rename…');
// Rename in the input dialog
const newName = 'test.yml';
await processRenameDialog(page, FILE, newName);
// Check the URL contains the new name
const url = page.url();
expect(url).toContain(newName);
});
});