mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
13 lines
303 B
TypeScript
13 lines
303 B
TypeScript
|
expect.extend({
|
||
|
toBeEmptyArray(this: jest.MatcherContext, actual: unknown) {
|
||
|
const pass = Array.isArray(actual) && actual.length === 0;
|
||
|
|
||
|
return {
|
||
|
pass,
|
||
|
message: pass
|
||
|
? () => `Expected ${actual} to be an empty array`
|
||
|
: () => `Expected ${actual} not to be an empty array`,
|
||
|
};
|
||
|
},
|
||
|
});
|