Remove all of the solutions from rehearsal

This commit is contained in:
Steve Kinney
2024-10-02 08:48:44 -05:00
parent 4b025e2a07
commit 90b96aa61a
10 changed files with 43 additions and 259 deletions

View File

@@ -9,13 +9,5 @@ function delay(callback) {
}
describe('delay function', () => {
it('should call callback after delay', () => {
const callback = vi.fn();
delay(callback);
vi.advanceTimersByTime(1000);
expect(callback).toHaveBeenCalledWith('Delayed');
});
it.todo('should call callback after delay', () => {});
});