Disable some more flaky/broken selenium tests
[lhc/web/wiklou.git] / tests / selenium / specs / user.js
index 193095d..85e71ef 100644 (file)
@@ -9,13 +9,20 @@ describe( 'User', function () {
        var password,
                username;
 
+       before( function () {
+               // disable VisualEditor welcome dialog
+               UserLoginPage.open();
+               browser.localStorage( 'POST', { key: 've-beta-welcome-dialog', value: '1' } );
+       } );
+
        beforeEach( function () {
                browser.deleteCookie();
                username = `User-${Math.random().toString()}`;
                password = Math.random().toString();
        } );
 
-       it( 'should be able to create account', function () {
+       // Disable due to broken/flakiness (T247580)
+       it.skip( 'should be able to create account', function () {
 
                // create
                CreateAccountPage.createAccount( username, password );
@@ -25,7 +32,8 @@ describe( 'User', function () {
 
        } );
 
-       it( 'should be able to log in', function () {
+       // Disable due to broken/flakiness (T247580)
+       it.skip( 'should be able to log in', function () {
 
                // create
                browser.call( function () {
@@ -40,8 +48,8 @@ describe( 'User', function () {
 
        } );
 
-       it( 'should be able to change preferences', function () {
-
+       // Disabled due to flakiness (T199446)
+       it.skip( 'should be able to change preferences', function () {
                var realName = Math.random().toString();
 
                // create