Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jenbutongit committed Oct 23, 2023
1 parent b2e6885 commit d2dc144
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/server/utils/__tests__/validation.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ describe("isGovUKEmailAddress", () => {
expect(isGovUKEmailAddress("person.surname@fco")).toBe(false);
expect(isGovUKEmailAddress("@fcdo.gov.uk")).toBe(false);
expect(isGovUKEmailAddress("fcdo.gov.uk")).toBe(false);
expect(isGovUKEmailAddress("[email protected]")).toBe(false);
expect(isGovUKEmailAddress("[email protected]")).toBe(false);
expect(isGovUKEmailAddress("[email protected]")).toBe(false);
});

test("multiple emails fail", () => {
Expand Down

0 comments on commit d2dc144

Please sign in to comment.