-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.spec.ts
92 lines (78 loc) · 2.54 KB
/
index.spec.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import { readFileSync } from "fs";
import { describe, test, expect } from "vitest";
import path from "path";
import prettier from "prettier";
import { compile } from "../index.js";
const formatHTML = (html: string) => prettier.format(html, { parser: "html" });
describe("compile", () => {
test("should render container type correctly", async (t) => {
let { code: result, html } = await compile({
value: readFileSync(path.join(__dirname, "./container-type.md"), "utf8"),
filepath: "xxx.mdx",
development: true,
root: "xxx",
});
expect(formatHTML(html)).toMatchSnapshot();
expect(result).toMatchSnapshot();
});
test("should render container type with space correctly", async (t) => {
let { code: result, html } = await compile({
value: readFileSync(
path.join(__dirname, "./container-type-with-space.md"),
"utf8"
),
filepath: "xxx.mdx",
development: true,
root: "xxx",
});
expect(formatHTML(html)).toMatchSnapshot();
expect(result).toMatchSnapshot();
});
test("should render container content correctly", async (t) => {
let { code: result, html } = await compile({
value: readFileSync(
path.join(__dirname, "./container-content.md"),
"utf8"
),
filepath: "xxx.mdx",
development: true,
root: "xxx",
});
expect(formatHTML(html)).toMatchSnapshot();
expect(result).toMatchSnapshot();
});
test("should render container title in mdx correctly", async (t) => {
let { code: result, html } = await compile({
value: readFileSync(
path.join(__dirname, "./container-title.mdx"),
"utf8"
),
filepath: "xxx.mdx",
development: true,
root: "xxx",
});
expect(formatHTML(html)).toMatchSnapshot();
expect(result).toMatchSnapshot();
});
test("should render container title in md correctly", async (t) => {
let { code: result, html } = await compile({
value: readFileSync(path.join(__dirname, "./container-title.md"), "utf8"),
filepath: "xxx.md",
development: true,
root: "xxx",
});
expect(formatHTML(html)).toMatchSnapshot();
expect(result).toMatchSnapshot();
});
test("should compile jsx", async (t) => {
let { code: result, html } = await compile({
value: readFileSync(path.join(__dirname, "./compile-jsx.mdx"), "utf8"),
filepath: "xxx.mdx",
development: true,
root: "xxx",
jsx: false
});
expect(formatHTML(html)).toMatchSnapshot();
expect(result).toMatchSnapshot();
});
});