From 8da1ac8bcd5aa769d3ef9d9b0b58fa805b932bb1 Mon Sep 17 00:00:00 2001 From: mareikeheuer Date: Tue, 3 Dec 2024 11:28:24 +0100 Subject: [PATCH] Disable Cypress backlinks tests temporarily for Qunit conversion Once the Qunit tests are done, the file can be deleted Bug: T368267 Change-Id: I564f7a9cfa606d5ab4759682ec6084f9c59a7923 --- tests/cypress/e2e/tests/backlinks.cy.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/cypress/e2e/tests/backlinks.cy.js b/tests/cypress/e2e/tests/backlinks.cy.js index 6b60018f2..3cf49cb58 100644 --- a/tests/cypress/e2e/tests/backlinks.cy.js +++ b/tests/cypress/e2e/tests/backlinks.cy.js @@ -2,7 +2,7 @@ import * as helper from '../utils/functions.helper.js'; const title = helper.getTestString( 'CiteTest-title' ); -describe( 'Cite backlinks test', () => { +describe.skip( 'Cite backlinks test', () => { before( () => { helper.visitTitle( '' ); @@ -20,7 +20,7 @@ describe( 'Cite backlinks test', () => { } ); // 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' ); } );