Skip to content

Commit

Permalink
test(organization): fix typo only (#782)
Browse files Browse the repository at this point in the history
  • Loading branch information
rebeccadumazert authored Feb 17, 2025
1 parent a5dfdb7 commit d6e7f0a
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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",
Expand Down

0 comments on commit d6e7f0a

Please sign in to comment.