summaryrefslogtreecommitdiff
path: root/integration.test.ts
blob: 15241def5f1c34de2b12935fdcfff60db8d2d759 (plain)
1
2
3
4
5
6
7
import fetch from "node-fetch";

describe("integration tests", () => {
  it("should do great", async () => {
    await fetch();
  });
});