1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00

Chore: Disable flaky test: Disable Rich Text Editor case of the editor.setText command test (#11311)

This commit is contained in:
Henry Heino 2024-11-05 01:04:44 -08:00 committed by GitHub
parent ce26e085ff
commit 9b9bb6eb49
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,8 +3,7 @@ import { test } from './util/test';
import MainScreen from './models/MainScreen';
test.describe('pluginApi', () => {
for (const richTextEditor of [false, true]) {
test(`the editor.setText command should update the current note (use RTE: ${richTextEditor})`, async ({ startAppWithPlugins }) => {
test('the editor.setText command should update the current note (use RTE: false)', async ({ startAppWithPlugins }) => {
const { app, mainWindow } = await startAppWithPlugins(['resources/test-plugins/execCommand.js']);
const mainScreen = new MainScreen(mainWindow);
await mainScreen.createNewNote('First note');
@ -13,11 +12,6 @@ test.describe('pluginApi', () => {
await editor.focusCodeMirrorEditor();
await mainWindow.keyboard.type('This content should be overwritten.');
if (richTextEditor) {
await editor.toggleEditorsButton.click();
await editor.richTextEditor.click();
}
await editor.expectToHaveText('This content should be overwritten.');
await mainScreen.goToAnything.runCommand(app, 'testUpdateEditorText');
await editor.expectToHaveText('PASS');
@ -28,6 +22,5 @@ test.describe('pluginApi', () => {
await editor.expectToHaveText('PASS');
});
}
});