diff --git a/cypress/e2e/tests/backlinks.cy.js b/cypress/e2e/tests/backlinks.cy.js
index b75dc00cf..69f14b64c 100644
--- a/cypress/e2e/tests/backlinks.cy.js
+++ b/cypress/e2e/tests/backlinks.cy.js
@@ -9,19 +9,20 @@ function getTestString( prefix = '' ) {
describe( 'Cite backlinks test', () => {
before( () => {
- cy.visit( '/' );
+ cy.visit( '/index.php' );
const wikiText = 'This is reference #1: [This is citation #1 for reference #1 and #2]
' +
'This is reference #2:
' +
'This is reference #3: [This is citation #2]
' +
'';
- // Rely on the retry behavior of Cypress assertions to use this as a "wait" until the specified conditions are met.
+ // Rely on the retry behavior of Cypress assertions to use this as a "wait"
+ // until the specified conditions are met.
cy.window().should( 'have.property', 'mw' ).and( 'have.property', 'loader' ).and( 'have.property', 'using' );
- cy.window().then( ( win ) => {
- win.mw.loader.using( 'mediawiki.api' ).then( () => {
- new win.mw.Api().create( title, {}, wikiText );
- } );
+ cy.window().then( async ( win ) => {
+ await win.mw.loader.using( 'mediawiki.api' );
+ const response = await new win.mw.Api().create( title, {}, wikiText );
+ expect( response.result ).to.equal( 'Success' );
} );
} );