Skip to content

Commit

Permalink
Attempting to fix breaking build
Browse files Browse the repository at this point in the history
Apparently the Getting Started page is preventing access to Console (Dev Tools, really) so the functional tests for Console are failing. This commit opts the user out of the Getting Started page before attempting to navigate to Console.
  • Loading branch information
ycombinator committed May 15, 2017
1 parent 01e5402 commit 93380ea
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/functional/apps/console/_console.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ export default function ({ getService, getPageObjects }) {
const retry = getService('retry');
const log = getService('log');
const screenshots = getService('screenshots');
const PageObjects = getPageObjects(['common', 'console']);
const PageObjects = getPageObjects(['common', 'console', 'gettingStarted']);

describe('console app', function describeIndexTests() {
before(function () {
before(async function () {
log.debug('navigateTo console');
await PageObjects.gettingStarted.clickOptOutLink();
return PageObjects.common.navigateToApp('console');
});

Expand Down

0 comments on commit 93380ea

Please sign in to comment.