Remove optimization that caused scrubbing misbehavior

This commit is contained in:
Dermot Duffy
2024-08-26 20:55:02 -07:00
parent 5ad957f465
commit 8344734e2b
3 changed files with 8 additions and 9 deletions
+4
View File
@@ -124,6 +124,10 @@ describe('errorToConsole', () => {
errorToConsole(error, func);
expect(func).toHaveBeenCalledWith('ERROR');
});
it('should log string', () => {
errorToConsole('string message');
expect(spy).toHaveBeenCalledWith('string message');
});
});
describe('isHoverableDevice', () => {