forked from logseq/logseq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhotkey.spec.ts
55 lines (48 loc) · 2.08 KB
/
hotkey.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
import { expect } from '@playwright/test'
import { test } from './fixtures'
import { createRandomPage, newBlock, lastBlock, IsMac, IsLinux } from './utils'
test('open search dialog', async ({ page }) => {
if (IsMac) {
await page.keyboard.press('Meta+k')
} else if (IsLinux) {
await page.keyboard.press('Control+k')
} else {
// TODO: test on Windows and other platforms
expect(false)
}
await page.waitForSelector('[placeholder="Search or create page"]')
await page.keyboard.press('Escape')
await page.waitForSelector('[placeholder="Search or create page"]', { state: 'hidden' })
})
// See-also: https://github.com/logseq/logseq/issues/3278
test('insert link', async ({ page }) => {
await createRandomPage(page)
let hotKey = 'Control+l'
let selectAll = 'Control+a'
if (IsMac) {
hotKey = 'Meta+l'
selectAll = 'Meta+a'
}
// Case 1: empty link
await lastBlock(page)
await page.press(':nth-match(textarea, 1)', hotKey)
expect(await page.inputValue(':nth-match(textarea, 1)')).toBe('[]()')
await page.type(':nth-match(textarea, 1)', 'Logseq Website')
expect(await page.inputValue(':nth-match(textarea, 1)')).toBe('[Logseq Website]()')
// Case 2: link with label
await newBlock(page)
await page.type(':nth-match(textarea, 1)', 'Logseq')
await page.press(':nth-match(textarea, 1)', selectAll)
await page.press(':nth-match(textarea, 1)', hotKey)
expect(await page.inputValue(':nth-match(textarea, 1)')).toBe('[Logseq]()')
await page.type(':nth-match(textarea, 1)', 'https://logseq.com/')
expect(await page.inputValue(':nth-match(textarea, 1)')).toBe('[Logseq](https://logseq.com/)')
// Case 3: link with URL
await newBlock(page)
await page.type(':nth-match(textarea, 1)', 'https://logseq.com/')
await page.press(':nth-match(textarea, 1)', selectAll)
await page.press(':nth-match(textarea, 1)', hotKey)
expect(await page.inputValue(':nth-match(textarea, 1)')).toBe('[](https://logseq.com/)')
await page.type(':nth-match(textarea, 1)', 'Logseq')
expect(await page.inputValue(':nth-match(textarea, 1)')).toBe('[Logseq](https://logseq.com/)')
})