From d6e7f0a046fe5d093b9f1d055200284c5c6439aa Mon Sep 17 00:00:00 2001 From: Rebecca Dumazert <44778533+rebeccadumazert@users.noreply.github.com> Date: Mon, 17 Feb 2025 11:36:03 +0100 Subject: [PATCH] test(organization): fix typo only (#782) --- .../~/organizations/repository/src/get_domain_count.test.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/~/organizations/repository/src/get_domain_count.test.ts b/packages/~/organizations/repository/src/get_domain_count.test.ts index 58f58713..b0e20998 100644 --- a/packages/~/organizations/repository/src/get_domain_count.test.ts +++ b/packages/~/organizations/repository/src/get_domain_count.test.ts @@ -14,10 +14,8 @@ beforeEach(empty_database); // test("returns no member", async () => { - const unicorn_organization_id = await create_unicorn_organization(pg); - const domain_unicorn = await get_domain_count(pg, { - organization_id: unicorn_organization_id, + organization_id: 666, }); expect(domain_unicorn).toEqual(0); @@ -33,7 +31,7 @@ test("returns 1 member", async () => { expect(domain_unicorn).toBe(1); }); -test.only("returns 3 domains", async () => { +test("returns 3 domains", async () => { const unicorn_organization_id = await create_unicorn_organization(pg); await pg.insert(schema.email_domains).values({ domain: "bi.corn",