mirror of
https://github.com/enso-org/enso.git
synced 2024-12-21 08:01:46 +03:00
51 lines
1.7 KiB
TypeScript
51 lines
1.7 KiB
TypeScript
|
import { expect, test } from 'playwright/test'
|
||
|
import * as actions from './actions'
|
||
|
import { CONTROL_KEY } from './keyboard'
|
||
|
import * as locate from './locate'
|
||
|
|
||
|
test('Main method documentation', async ({ page }) => {
|
||
|
await actions.goToGraph(page)
|
||
|
|
||
|
// Documentation panel hotkey opens right-dock.
|
||
|
await expect(locate.rightDock(page)).toBeHidden()
|
||
|
await page.keyboard.press(`${CONTROL_KEY}+D`)
|
||
|
await expect(locate.rightDock(page)).toBeVisible()
|
||
|
|
||
|
// Right-dock displays main method documentation.
|
||
|
await expect(locate.lexicalContent(locate.rightDock(page))).toHaveText('The main method')
|
||
|
|
||
|
// Documentation hotkey closes right-dock.p
|
||
|
await page.keyboard.press(`${CONTROL_KEY}+D`)
|
||
|
await expect(locate.rightDock(page)).toBeHidden()
|
||
|
})
|
||
|
|
||
|
test('Doc panel focus (regression #10471)', async ({ page }) => {
|
||
|
await actions.goToGraph(page)
|
||
|
|
||
|
await page.keyboard.press(`${CONTROL_KEY}+D`)
|
||
|
await page.keyboard.press(`${CONTROL_KEY}+\``)
|
||
|
await expect(locate.rightDock(page)).toBeVisible()
|
||
|
await expect(locate.bottomDock(page)).toBeVisible()
|
||
|
|
||
|
// Focus code editor.
|
||
|
await locate.bottomDock(page).click()
|
||
|
|
||
|
await page.evaluate(() => {
|
||
|
const codeEditor = (window as any).__codeEditorApi
|
||
|
const docStart = codeEditor.indexOf('The main method')
|
||
|
codeEditor.placeCursor(docStart + 8)
|
||
|
})
|
||
|
await page.keyboard.press('Space')
|
||
|
await page.keyboard.press('T')
|
||
|
await page.keyboard.press('E')
|
||
|
await page.keyboard.press('S')
|
||
|
await page.keyboard.press('T')
|
||
|
|
||
|
const content = await page.evaluate(() => {
|
||
|
const codeEditor = (window as any).__codeEditorApi
|
||
|
return codeEditor.textContent()
|
||
|
})
|
||
|
expect(content.includes('The main TEST method')).toBe(true)
|
||
|
await expect(locate.rightDock(page)).toContainText('The main TEST method')
|
||
|
})
|