From d9d9326764403a04428a9ec5538b2d32b1aeea2d Mon Sep 17 00:00:00 2001 From: mrmeku Date: Thu, 7 Feb 2019 23:59:19 -0700 Subject: [PATCH] fix(e2e): Disalble flaky test and re-enable stable one --- apps/angular-console-e2e/src/integration/projects.spec.ts | 3 +-- apps/angular-console-e2e/src/integration/tasks.spec.ts | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/angular-console-e2e/src/integration/projects.spec.ts b/apps/angular-console-e2e/src/integration/projects.spec.ts index 52bd9b95a1..49951a1b90 100644 --- a/apps/angular-console-e2e/src/integration/projects.spec.ts +++ b/apps/angular-console-e2e/src/integration/projects.spec.ts @@ -32,8 +32,7 @@ describe('Projects', () => { }); }); - // TODO: Re-enable when we app routes back to projects page - xit('provides navigation to and from command runners', () => { + it('provides navigation to and from command runners', () => { cy.contains('Generate Component').click(); cy.get('.exit-action').click(); diff --git a/apps/angular-console-e2e/src/integration/tasks.spec.ts b/apps/angular-console-e2e/src/integration/tasks.spec.ts index 36e66a765a..92597dd5d6 100644 --- a/apps/angular-console-e2e/src/integration/tasks.spec.ts +++ b/apps/angular-console-e2e/src/integration/tasks.spec.ts @@ -122,7 +122,7 @@ describe('Tasks', () => { }); }); - it('runs build and show recent tasks', () => { + xit('runs build and show recent tasks', () => { cy.writeFile('../../tmp/proj/src/app/app.component.ts', GOOD_CMP); cy.writeFile('../../tmp/proj/src/app/app.component.spec.ts', PASSING_TESTS);