Skip to content

Instantly share code, notes, and snippets.

@n8rzz
Last active October 23, 2021 21:34
Show Gist options
  • Save n8rzz/e199e4a3d5b9985effed4583f03e095f to your computer and use it in GitHub Desktop.
Save n8rzz/e199e4a3d5b9985effed4583f03e095f to your computer and use it in GitHub Desktop.
max-todos.test.ts - with todos
describe('.max()', () => {
describe('when `valueOne` is equal to `valueTwo`', () => {
test.todo('should return `valueOne`');
});
describe('when `valueOne` is less than `valueTwo`', () => {
test.todo('should return `valueTwo`');
});
describe('when `valueOne` is greater than `valueTwo`', () => {
test.todo('should return `valueOne`');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment