Test files linted
This commit is contained in:
@ -5,5 +5,7 @@ test('debounce is a Function', () => {
|
||||
expect(debounce).toBeInstanceOf(Function);
|
||||
});
|
||||
test('Works as expected', () => {
|
||||
debounce(() => { expect(true).toBeTruthy(); });
|
||||
});
|
||||
debounce(() => {
|
||||
expect(true).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user