Skip to content

Commit

Permalink
fix: tsc-alias conflict with cron.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
jenspots committed May 16, 2024
1 parent 694055b commit 31f6b81
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { timeout } from "./util/timeout";
import { statusCodeAccepted } from "./util/status";
import { parseHeaders } from "./util/headers";
import { Auth, AuthConfig } from "./auth";
import { cronify } from "./util/cron";
import { cronify } from "./util/cronify";

/**
* An instance of this class defines how the process should execute a request
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/util/cron.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect, describe, jest, test } from "@jest/globals";
import { cronify } from "../../src/util/cron";
import { cronify } from "../../src/util/cronify";
import { HttpUtilsError } from "../../src/error";

describe("cron", () => {
Expand Down

0 comments on commit 31f6b81

Please sign in to comment.