Disable even more flaky/broken selenium tests
authorReedy <reedy@wikimedia.org>
Thu, 12 Mar 2020 23:38:21 +0000 (23:38 +0000)
committerReedy <reedy@wikimedia.org>
Thu, 12 Mar 2020 23:39:23 +0000 (23:39 +0000)
Bug: T247580
Change-Id: I0004e97bb7de8586ee1b5c246776cccaf4f21c77

tests/selenium/specs/page.js

index 376dce5..83d17e1 100644 (file)
@@ -27,7 +27,8 @@ describe( 'Page', function () {
                name = getTestString();
        } );
 
                name = getTestString();
        } );
 
-       it( 'should be creatable', function () {
+       // Disable due to broken/flakiness (T247580)
+       it.skip( 'should be creatable', function () {
 
                // create
                EditPage.edit( name, content );
 
                // create
                EditPage.edit( name, content );
@@ -38,7 +39,8 @@ describe( 'Page', function () {
 
        } );
 
 
        } );
 
-       it( 'should be re-creatable', function () {
+       // Disable due to broken/flakiness (T247580)
+       it.skip( 'should be re-creatable', function () {
                let initialContent = getTestString();
 
                // create
                let initialContent = getTestString();
 
                // create
@@ -60,7 +62,8 @@ describe( 'Page', function () {
 
        } );
 
 
        } );
 
-       it( 'should be editable', function () {
+       // Disable due to broken/flakiness (T247580)
+       it.skip( 'should be editable', function () {
 
                // create
                browser.call( function () {
 
                // create
                browser.call( function () {
@@ -89,7 +92,8 @@ describe( 'Page', function () {
 
        } );
 
 
        } );
 
-       it( 'should be deletable', function () {
+       // Disable due to broken/flakiness (T247580)
+       it.skip( 'should be deletable', function () {
 
                // login
                UserLoginPage.loginAdmin();
 
                // login
                UserLoginPage.loginAdmin();
@@ -110,7 +114,8 @@ describe( 'Page', function () {
 
        } );
 
 
        } );
 
-       it( 'should be restorable', function () {
+       // Disable due to broken/flakiness (T247580)
+       it.skip( 'should be restorable', function () {
 
                // login
                UserLoginPage.loginAdmin();
 
                // login
                UserLoginPage.loginAdmin();