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

@@ -6,10 +6,5 @@ describe('stringToNumber', () => {
expect(stringToNumber('42')).toBe(42);
});
it('throws an error if given a string that is not a number', () => {
const value = 'foo';
expect(() => stringToNumber(value)).toThrowError(
`cannot be parsed as a number`,
);
});
it.todo('throws an error if given a string that is not a number', () => {});
});