Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ogroppo committed Sep 7, 2024
1 parent 3899ca9 commit bffc54f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/helpers/first.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@ import { describe, expect, test } from "@jest/globals";
import { first } from "./first";

describe("first", () => {
test("no arg", async () => {
expect(first()).toBeUndefined();
});

test("args", async () => {
expect(first([])).toBe(undefined);
expect(first([0])).toBe(0);
Expand Down

0 comments on commit bffc54f

Please sign in to comment.