Skip to content
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.

Commit

Permalink
fix: integration test for sequences (#1981)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmarshall authored Nov 27, 2023
1 parent 24613a4 commit f346cde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/api/routes/engagement/v2/sequence.integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ describe('sequence', () => {
});
expect(res.response.status).toEqual(200);
const step = res.data?.steps?.find((s) => s.id === stepId);
expect(step?.template?.body).toEqual('Updated body');
expect(step?.template?.body).toEqual(expect.stringContaining('Updated body'));
expect(step?.template?.subject).toEqual('modified subject');
}

Expand Down

0 comments on commit f346cde

Please sign in to comment.