Skip to content

Commit

Permalink
fix(api tests): re-enable all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewleith committed Aug 14, 2023
1 parent d79d18e commit 02804e2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests_cypress/cypress/e2e/api/all.cy.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
import './email_notifications.cy';
import './file_attach.cy';
// import './file_attach.cy';
10 changes: 5 additions & 5 deletions tests_cypress/cypress/e2e/api/email_notifications.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand All @@ -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],
Expand All @@ -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],
Expand All @@ -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],
Expand All @@ -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);
Expand Down

0 comments on commit 02804e2

Please sign in to comment.