-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathreadReadmeFootnotes.test.ts
62 lines (40 loc) · 1.53 KB
/
readReadmeFootnotes.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import { describe, expect, it } from "vitest";
import { readReadmeFootnotes } from "./readReadmeFootnotes.js";
describe(readReadmeFootnotes, () => {
it("resolves undefined when there is no existing readme content", async () => {
const getReadme = () => Promise.resolve("");
const result = await readReadmeFootnotes(getReadme);
expect(result).toBeUndefined();
});
it("resolves undefined when there is no templated by notice", async () => {
const getReadme = () => Promise.resolve(`# My Package`);
const result = await readReadmeFootnotes(getReadme);
expect(result).toBeUndefined();
});
it("resolves undefined when there is no content after a templated by notice", async () => {
const getReadme = () =>
Promise.resolve(`# My Package
> 💖 This package was templated with etc. etc.
`);
const result = await readReadmeFootnotes(getReadme);
expect(result).toBeUndefined();
});
it("resolves the content when there plain text content after a templated by notice", async () => {
const getReadme = () =>
Promise.resolve(`# My Package
> 💖 This package was templated with etc. etc.
After.
`);
const result = await readReadmeFootnotes(getReadme);
expect(result).toBe("After.");
});
it("resolves the content when there are footnotes after a templated by notice", async () => {
const getReadme = () =>
Promise.resolve(`# My Package
> 💖 This package was templated with etc. etc.
[^1]: After.
`);
const result = await readReadmeFootnotes(getReadme);
expect(result).toBe("[^1]: After.");
});
});