From 76eb5d6925b683689b1e37b8fe480a5a9dc42a4d Mon Sep 17 00:00:00 2001 From: Hayden <64056131+hay-kot@users.noreply.github.com> Date: Wed, 15 Nov 2023 15:20:54 -0600 Subject: [PATCH] use more random words --- frontend/lib/api/__test__/user/notifier.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/lib/api/__test__/user/notifier.test.ts b/frontend/lib/api/__test__/user/notifier.test.ts index 5a44c97..664b85e 100644 --- a/frontend/lib/api/__test__/user/notifier.test.ts +++ b/frontend/lib/api/__test__/user/notifier.test.ts @@ -8,7 +8,7 @@ describe("basic notifier workflows", () => { // Create Notifier const result = await client.notifiers.create({ - name: faker.person.firstName(), + name: faker.word.words(2), url: "discord://" + faker.string.alphanumeric(10), isActive: true, }); @@ -22,7 +22,7 @@ describe("basic notifier workflows", () => { // Update Notifier with new URL { const updateData = { - name: faker.person.firstName(), + name: faker.word.words(2), url: "discord://" + faker.string.alphanumeric(10), isActive: true, }; @@ -37,7 +37,7 @@ describe("basic notifier workflows", () => { // Update Notifier with empty URL { const updateData = { - name: faker.person.firstName(), + name: faker.word.words(2), url: null, isActive: true, };