8 lines
167 B
JavaScript
8 lines
167 B
JavaScript
export function assertNoOwnProperties(obj) {
|
|
expect(Object.getOwnPropertyNames(obj)).toHaveLength(0);
|
|
}
|
|
|
|
export function multiline(arr) {
|
|
return arr.join("\n");
|
|
}
|