We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9afdf3 commit 714bb02Copy full SHA for 714bb02
test/index.test.ts
@@ -0,0 +1,15 @@
1
+import {
2
+ createBasicAuth,
3
+ createAppAuth,
4
+ createOAuthAppAuth,
5
+ createTokenAuth,
6
+ createActionAuth
7
+} from "../src/index";
8
+
9
+test("smoke", async () => {
10
+ expect(createBasicAuth).toBeInstanceOf(Function);
11
+ expect(createAppAuth).toBeInstanceOf(Function);
12
+ expect(createOAuthAppAuth).toBeInstanceOf(Function);
13
+ expect(createTokenAuth).toBeInstanceOf(Function);
14
+ expect(createActionAuth).toBeInstanceOf(Function);
15
+});
0 commit comments