Skip to content

Commit

Permalink
improve code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
blaine-arcjet committed Jan 29, 2025
1 parent eadd440 commit d5a8b6b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions env/test/env.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ describe("env", () => {
expect(env.platform({})).toBeUndefined();
expect(env.platform({ FLY_APP_NAME: "" })).toBeUndefined();
expect(env.platform({ FLY_APP_NAME: "foobar" })).toEqual("fly-io");
expect(env.platform({ VERCEL: "" })).toBeUndefined();
expect(env.platform({ VERCEL: "1" })).toEqual("vercel");
});

test("isDevelopment", () => {
Expand Down

0 comments on commit d5a8b6b

Please sign in to comment.