Unskip tasks tests

pull/13155/head
Deniz Kusefoglu 2019-04-04 11:05:39 -07:00
parent 52c72ac20c
commit 9808ce2a5f
1 changed files with 2 additions and 2 deletions

View File

@ -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()
})