test: Split test utilities to improve test times (#2622)

This commit is contained in:
Dermot Duffy
2026-07-26 16:29:53 -07:00
committed by GitHub
parent 8d44fcecf1
commit ad89aa9538
234 changed files with 2730 additions and 2516 deletions
+2 -2
View File
@@ -9,10 +9,10 @@ describe('log', () => {
});
it('should do nothing without debug logging set', () => {
log({}, 'foo');
expect(spy).not.toBeCalled();
expect(spy).not.toHaveBeenCalled();
});
it('should log debug when appropriately configured', () => {
log({ debug: { logging: true } }, 'foo');
expect(spy).toBeCalledWith('foo');
expect(spy).toHaveBeenCalledWith('foo');
});
});