From 9808ce2a5f3937acd574d99d38671cc6f55e1c5d Mon Sep 17 00:00:00 2001 From: Deniz Kusefoglu Date: Thu, 4 Apr 2019 11:05:39 -0700 Subject: [PATCH] Unskip tasks tests --- ui/cypress/e2e/tasks.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/cypress/e2e/tasks.test.ts b/ui/cypress/e2e/tasks.test.ts index 7affc3d2dd..265996af4f 100644 --- a/ui/cypress/e2e/tasks.test.ts +++ b/ui/cypress/e2e/tasks.test.ts @@ -16,7 +16,7 @@ describe('Tasks', () => { }) }) - it.skip('can create a task', () => { + it('can create a task', () => { const taskName = '🦄ask' cy.get('.empty-state').within(() => { cy.contains('Create').click() @@ -105,7 +105,7 @@ describe('Tasks', () => { cy.getByTestID('task-card').should('contain', newName) }) - it.skip('fails to create a task without a valid script', () => { + it('fails to create a task without a valid script', () => { cy.get('.empty-state').within(() => { cy.contains('Create').click() })