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 800cda8 commit 78c41fcCopy full SHA for 78c41fc
lib/short-kind.test.ts
@@ -0,0 +1,8 @@
1
+import { expect, test } from "vitest";
2
+import { shortKind } from "./short-kind";
3
+
4
+test("shortKind", () => {
5
+ expect(shortKind("variable")).toBe("variable");
6
+ expect(shortKind("class-constructor")).toBe("constructor");
7
+ expect(shortKind("interface-call-signature")).toBe("call signature");
8
+});
0 commit comments