Skip to content
This repository has been archived by the owner on Feb 18, 2021. It is now read-only.

Commit

Permalink
Temporarily disable Activity Log tests (#1412)
Browse files Browse the repository at this point in the history
  • Loading branch information
alisterscott committed Aug 13, 2018
1 parent 3f1b806 commit fe65675
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions specs/wp-post-editor-spec.js
Expand Up @@ -27,6 +27,7 @@ import * as driverHelper from '../lib/driver-helper';
import * as mediaHelper from '../lib/media-helper';
import * as dataHelper from '../lib/data-helper';
import * as eyesHelper from '../lib/eyes-helper.js';
import * as SlackNotifier from '../lib/slack-notifier';

const mochaTimeOut = config.get( 'mochaTimeoutMS' );
const startBrowserTimeoutMS = config.get( 'startBrowserTimeoutMS' );
Expand Down Expand Up @@ -422,6 +423,13 @@ describe( `[${ host }] Editor: Posts (${ screenSize })`, function() {
const blogPostQuote =
'“We are what we pretend to be, so we must be careful about what we pretend to be.”\n- Kurt Vonnegut';

before( async function() {
await SlackNotifier.warn( 'Activity Log tests currently disabled due to issues', {
suppressDuplicateMessages: true,
} );
return this.skip();
} );

before( async function() {
await driverManager.ensureNotLoggedIn( driver );
} );
Expand Down

0 comments on commit fe65675

Please sign in to comment.