diff --git a/tests_cypress/cypress/e2e/api/all.cy.js b/tests_cypress/cypress/e2e/api/all.cy.js index 3a52c1c0d7..e23ef40716 100644 --- a/tests_cypress/cypress/e2e/api/all.cy.js +++ b/tests_cypress/cypress/e2e/api/all.cy.js @@ -1,2 +1,2 @@ import './email_notifications.cy'; -import './file_attach.cy'; +// import './file_attach.cy'; diff --git a/tests_cypress/cypress/e2e/api/email_notifications.cy.js b/tests_cypress/cypress/e2e/api/email_notifications.cy.js index 4f9e5826ce..5cbaee594a 100644 --- a/tests_cypress/cypress/e2e/api/email_notifications.cy.js +++ b/tests_cypress/cypress/e2e/api/email_notifications.cy.js @@ -43,7 +43,7 @@ describe(`Email notifications test[${config.CONFIG_NAME}]`, () => { }); - it.skip('can send email to smoke test addresses', () => { + it('can send email to smoke test addresses', () => { if (api_key !== 'TEAM') { for (const email of config.Users.Simulated) { Notify.API.SendEmail({ @@ -60,7 +60,7 @@ describe(`Email notifications test[${config.CONFIG_NAME}]`, () => { } }); - it.skip('can use a non-default replyTo', () => { + it('can use a non-default replyTo', () => { Notify.API.SendEmail({ api_key: keys[api_key], to: config.Users.Simulated[0], @@ -74,7 +74,7 @@ describe(`Email notifications test[${config.CONFIG_NAME}]`, () => { }); }); - it.skip('can use a default replyTo', () => { + it('can use a default replyTo', () => { Notify.API.SendEmail({ api_key: keys[api_key], to: config.Users.Simulated[0], @@ -88,7 +88,7 @@ describe(`Email notifications test[${config.CONFIG_NAME}]`, () => { }); }); - it.skip('can use no replyTo', () => { + it('can use no replyTo', () => { Notify.API.SendEmail({ api_key: keys[api_key], to: config.Users.Simulated[0], @@ -101,7 +101,7 @@ describe(`Email notifications test[${config.CONFIG_NAME}]`, () => { }); }); - it.skip('Can scheduled a bulk email send', () => { + it('Can scheduled a bulk email send', () => { // Schedule 20 seconds from now var secheduled_for = new Date(); secheduled_for.setSeconds(secheduled_for.getSeconds()+20);