-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetupVitest.ts
97 lines (89 loc) · 2.51 KB
/
setupVitest.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
93
94
95
96
97
import { afterEach, beforeEach, expect, vi, type SpyInstance } from "vitest";
// @ts-ignore-next-line
globalThis.IS_REACT_ACT_ENVIRONMENT = true;
expect.extend({
toHaveBeenWarned(received: string) {
asserted.add(received);
const passed = warn.mock.calls.some((args) => args[0].includes(received));
if (passed) {
return {
pass: true,
message: () => `expected "${received}" not to have been warned.`,
};
} else {
const msgs = warn.mock.calls.map((args) => args[0]).join("\n - ");
return {
pass: false,
message: () =>
`expected "${received}" to have been warned` +
(msgs.length
? `.\n\nActual messages:\n\n - ${msgs}`
: ` but no warning was recorded.`),
};
}
},
toHaveBeenWarnedLast(received: string) {
asserted.add(received);
const passed =
warn.mock.calls[warn.mock.calls.length - 1]![0].includes(received);
if (passed) {
return {
pass: true,
message: () => `expected "${received}" not to have been warned last.`,
};
} else {
const msgs = warn.mock.calls.map((args) => args[0]).join("\n - ");
return {
pass: false,
message: () =>
`expected "${received}" to have been warned last.\n\nActual messages:\n\n - ${msgs}`,
};
}
},
toHaveBeenWarnedTimes(received: string, n: number) {
asserted.add(received);
let found = 0;
warn.mock.calls.forEach((args) => {
if (args[0].includes(received)) {
found++;
}
});
if (found === n) {
return {
pass: true,
message: () => `expected "${received}" to have been warned ${n} times.`,
};
} else {
return {
pass: false,
message: () =>
`expected "${received}" to have been warned ${n} times but got ${found}.`,
};
}
},
});
let warn: SpyInstance;
const asserted: Set<string> = new Set();
beforeEach(() => {
asserted.clear();
warn = vi.spyOn(console, "warn");
warn.mockImplementation(() => {});
});
afterEach(() => {
const assertedArray = Array.from(asserted);
const nonAssertedWarnings = warn.mock.calls
.map((args) => args[0])
.filter((received) => {
return !assertedArray.some((assertedMsg) => {
return received.includes(assertedMsg);
});
});
warn.mockRestore();
if (nonAssertedWarnings.length) {
throw new Error(
`test case threw unexpected warnings:\n - ${nonAssertedWarnings.join(
"\n - "
)}`
);
}
});