Skip to content

Commit 8b45cd6

Browse files
committed
improve test coverage for metamark exports
1 parent 1d92e9f commit 8b45cd6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/metamark.exports.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import m from "../src/index";
44
test("metamark exports", () => {
55
expect(m.obsidian.vault.process).toBeTypeOf("function");
66

7-
expect(m.utility.toSlug).toBeTypeOf("function");
87
expect(m.utility.getFileName).toBeTypeOf("function");
98
expect(m.utility.getFrontmatterAndMd).toBeTypeOf("function");
9+
expect(m.utility.jsonStringify).toBeTypeOf("function");
10+
expect(m.utility.toSlug).toBeTypeOf("function");
11+
expect(m.utility.writeToFileSync).toBeTypeOf("function");
1012
});

0 commit comments

Comments
 (0)