Disable Cypress backlinks tests temporarily for Qunit conversion

Once the Qunit tests are done, the file can be deleted

Bug: T368267
Change-Id: I564f7a9cfa606d5ab4759682ec6084f9c59a7923
This commit is contained in:
mareikeheuer 2024-12-03 11:28:24 +01:00
parent f3b5bb9c5d
commit 8da1ac8bcd

View file

@ -2,7 +2,7 @@ import * as helper from '../utils/functions.helper.js';
const title = helper.getTestString( 'CiteTest-title' ); const title = helper.getTestString( 'CiteTest-title' );
describe( 'Cite backlinks test', () => { describe.skip( 'Cite backlinks test', () => {
before( () => { before( () => {
helper.visitTitle( '' ); helper.visitTitle( '' );
@ -20,7 +20,7 @@ describe( 'Cite backlinks test', () => {
} ); } );
// T368267 // T368267
it.skip( 'hides clickable up arrow by default when there are multiple backlinks', () => { it( 'hides clickable up arrow by default when there are multiple backlinks', () => {
helper.getCiteMultiBacklink( 1 ).should( 'not.exist' ); helper.getCiteMultiBacklink( 1 ).should( 'not.exist' );
} ); } );