feat: convert "editor spec" to Playwright (#54970)

Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
This commit is contained in:
Sem Bauke
2024-05-29 18:23:11 +02:00
committed by GitHub
parent 07bef7a608
commit 98d85ed664
2 changed files with 36 additions and 29 deletions
+36
View File
@@ -0,0 +1,36 @@
import { test, expect } from '@playwright/test';
import { focusEditor } from './utils/editor';
test.describe('Editor Shortcuts', () => {
test('Should add a new line if the user presses Alt+Enter', async ({
page,
isMobile
}) => {
await page.goto(
'learn/responsive-web-design/basic-html-and-html5/say-hello-to-html-elements'
);
await focusEditor({ page, isMobile });
await page.keyboard.press('Alt+Enter');
await expect(
page
.getByTestId('editor-container-indexhtml')
.getByText('<h1>Hello</h1>\n')
).toBeVisible();
});
test('Should not add a new line if the user presses Ctrl+Enter', async ({
page,
isMobile
}) => {
await page.goto(
'learn/responsive-web-design/basic-html-and-html5/say-hello-to-html-elements'
);
await focusEditor({ page, isMobile });
await page.keyboard.press('Control+Enter');
await expect(
page.getByTestId('editor-container-indexhtml').getByText('<h1>Hello</h1>')
).toBeVisible();
});
});