We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af04ee9 commit 914ada3Copy full SHA for 914ada3
test/smoke.test.ts
@@ -0,0 +1,8 @@
1
+import { Octokit } from "../src";
2
+
3
+describe("Smoke test", () => {
4
+ it("is a function", () => {
5
+ expect(Octokit).toBeInstanceOf(Function);
6
+ expect(() => new Octokit()).not.toThrow();
7
+ });
8
+});
0 commit comments