-
Notifications
You must be signed in to change notification settings - Fork 439
Expand file tree
/
Copy pathmatchers.mjs
More file actions
31 lines (30 loc) · 860 Bytes
/
matchers.mjs
File metadata and controls
31 lines (30 loc) · 860 Bytes
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
// FIXME: copy implementations from karma tests
const customMatchers = [
// LWC custom
'toLogError',
'toLogErrorDev',
'toThrowErrorDev',
'toLogWarningDev',
'toThrowCallbackReactionError',
'toThrowCallbackReactionErrorDev',
'toThrowCallbackReactionErrorEvenInSyntheticLifecycleMode',
// jasmine compat
'toHaveSize',
'toBeFalse',
'toBeTrue',
];
export const registerCustomMatchers = (chai, utils) => {
for (const matcher of customMatchers) {
utils.addMethod(chai.Assertion.prototype, matcher, function () {
// FIXME: implement for realsies
const fn = utils.flag(this, 'object');
if (typeof fn === 'function') {
try {
fn();
} catch (_) {
//
}
}
});
}
};