Skip to content

Instantly share code, notes, and snippets.

@Marcisbee
Last active October 15, 2024 10:32
Show Gist options
  • Save Marcisbee/18387abf52997086d256c371df5220e3 to your computer and use it in GitHub Desktop.
Save Marcisbee/18387abf52997086d256c371df5220e3 to your computer and use it in GitHub Desktop.
Perfect TS test runner ideas???
import { suite } from 'trest';
import { double, asyncDouble } from './double.ts'
const test = suite('Test suite');
test('Test something', *() => {
(yield double(5)).toBe(10);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment