Skip to content

Commit 1c0ff5e

Browse files
committed
test: reproduction for #268
1 parent f06330c commit 1c0ff5e

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

test/typescript-validate.ts

+15-7
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,24 @@ import { createAppAuth } from "../src";
66

77
function expectType<T>(what: T) {}
88

9-
export async function readmeExample() {
10-
const auth = createAppAuth({
11-
appId: 1,
12-
privateKey: "-----BEGIN PRIVATE KEY-----\n...",
13-
clientId: "lv1.1234567890abcdef",
14-
clientSecret: "1234567890abcdef12341234567890abcdef1234",
15-
});
9+
const auth = createAppAuth({
10+
appId: 1,
11+
privateKey: "-----BEGIN PRIVATE KEY-----\n...",
12+
clientId: "lv1.1234567890abcdef",
13+
clientSecret: "1234567890abcdef12341234567890abcdef1234",
14+
});
1615

16+
export async function readmeExample() {
1717
// Retrieve an oauth-access token
1818
const userAuthentication = await auth({ type: "oauth-user", code: "123456" });
1919

2020
expectType<"token">(userAuthentication.type);
2121
}
22+
23+
export async function issue268() {
24+
// Retrieve an oauth-access token
25+
const userAuthentication = await auth({ type: "installation" });
26+
27+
expectType<"token">(userAuthentication.type);
28+
expectType<"tokenType">(userAuthentication.tokenType);
29+
}

0 commit comments

Comments
 (0)