-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmerge-export.test.js
More file actions
93 lines (78 loc) · 2.41 KB
/
Copy pathmerge-export.test.js
File metadata and controls
93 lines (78 loc) · 2.41 KB
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
93
import test from "ava";
import { mergeExports } from "../src/merge-exports.js";
import { readFile } from "fs/promises";
import glob from "fast-glob";
const replaceLine = (value) => value.replace(/\r\n/g, "\n");
test("module/atomico", async (t) => {
const snapPkg = await readFile("./tests/module/package.json", "utf8");
await mergeExports({
main: "atomico",
src: ["./tests/module/**"],
dist: "./tests/dist/module",
wrappers: true,
pkg: {
src: "./tests/dist/module/package.json",
snap: snapPkg,
},
});
const baseExpect = "./tests/expect";
const baseDist = "./tests/dist";
const filesExpect = await glob(`${baseExpect}/**`);
const filesDist = (await glob(`${baseDist}/**`)).reduce(
(files, file) => ({
...files,
[file.replace(baseDist, "")]: file,
}),
{}
);
await Promise.all(
filesExpect.map(async (file) =>
t.is(
replaceLine(await readFile(file, "utf8")),
replaceLine(
await readFile(
filesDist[file.replace(baseExpect, "")],
"utf8"
)
)
)
)
);
});
test("module/atomico - preserve extensions", async (t) => {
const snapPkg = await readFile("./tests/module/package.json", "utf8");
await mergeExports({
main: "atomico",
src: ["./tests/module/**"],
dist: "./tests/extensions-dist/module",
preserveExtensions: true,
wrappers: true,
pkg: {
src: "./tests/extensions-dist/module/package.json",
snap: snapPkg,
},
});
const baseExpect = "./tests/extensions-expect";
const baseDist = "./tests/extensions-dist";
const filesExpect = await glob(`${baseExpect}/**`);
const filesDist = (await glob(`${baseDist}/**`)).reduce(
(files, file) => ({
...files,
[file.replace(baseDist, "")]: file,
}),
{}
);
await Promise.all(
filesExpect.map(async (file) =>
t.is(
replaceLine(await readFile(file, "utf8")),
replaceLine(
await readFile(
filesDist[file.replace(baseExpect, "")],
"utf8"
)
)
)
)
);
});