Skip to content

Commit 714bb02

Browse files
committed
test: initial version
1 parent c9afdf3 commit 714bb02

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

test/index.test.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)