test_suite icon indicating copy to clipboard operation
test_suite copied to clipboard

An extension of Deno's built-in test runner to add setup/teardown hooks and make it easier to organize tests in a format similar to Jasmine, Jest, and Mocha.

Results 3 test_suite issues
Sort by recently updated
recently updated
newest added

The `describe` and `it` functions have call signatures that currently do not have direct test coverage. Add test coverage for those call signatures.

Currently this module requires hooks to be registered first before calling describe/it globally. At the global level this was needed because I need to determine if Deno.test should be called...

enhancement

Currently the only flag will only apply to the top level test it is nested in. That means that tests before and after it at the top level will still...

enhancement