mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeMirror
synced 2024-11-30 17:04:14 +00:00
608c799aa8
Bug: T280652 Change-Id: I065c6ff4f50626904fde2d3e676c4b71d62c43e0
39 lines
1.3 KiB
JavaScript
39 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
const assert = require( 'assert' ),
|
|
EditPage = require( '../pageobjects/edit.page' ),
|
|
FixtureContent = require( '../fixturecontent' ),
|
|
LoginPage = require( 'wdio-mediawiki/LoginPage' ),
|
|
UserPreferences = require( '../userpreferences' ),
|
|
Util = require( 'wdio-mediawiki/Util' );
|
|
|
|
// Skipped on 2024-03-20 in 1012801
|
|
// Disable as test is consistently failing on CI.
|
|
describe.skip( 'CodeMirror bracket match highlighting for the wikitext 2017 editor', () => {
|
|
let title;
|
|
|
|
before( async () => {
|
|
title = Util.getTestString( 'CodeMirror-fixture1-' );
|
|
await LoginPage.loginAdmin();
|
|
await FixtureContent.createFixturePage( title );
|
|
await UserPreferences.enableWikitext2017EditorWithCodeMirror();
|
|
} );
|
|
|
|
beforeEach( async () => {
|
|
await EditPage.openForEditing( title );
|
|
await EditPage.visualEditorSave.waitForDisplayed();
|
|
assert( !( await EditPage.wikiEditorToolbar.isDisplayed() ) );
|
|
await EditPage.clickText();
|
|
} );
|
|
|
|
it( 'highlights matching bracket', async () => {
|
|
await EditPage.cursorToPosition( 0 );
|
|
assert.strictEqual( await EditPage.getHighlightedMatchingBrackets(), '[]' );
|
|
} );
|
|
|
|
it( 'matches according to cursor movement', async () => {
|
|
await EditPage.cursorToPosition( 3 );
|
|
assert.strictEqual( await EditPage.getHighlightedMatchingBrackets(), '{}' );
|
|
} );
|
|
} );
|