Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-12-29 | docs(testing): Add import line to test example (#8909) | Maxim Zhukov | |
2020-11-22 | chore(cli/flags): Rename --failfast to --fail-fast (#8456) | Nayeem Rahman | |
2020-10-26 | rename(std/testing): rename assert*Contains to assert*Includes (#7951) | Tim Reichen | |
This commit renames two assertion functions to better align with JS API: - assertStringContains -> assertStringIncludes - assertArrayContains -> assertArrayIncludes | |||
2020-09-27 | fix: Use $deno$test.ts instead of .deno.test.ts (#7717) | Nayeem Rahman | |
2020-09-27 | feat(fmt): Sort named import and export specifiers (#7711) | David Sherret | |
2020-09-22 | docs: V8 is a JavaScript engine, not a runtime (#7619) | tokiedokie | |
2020-09-14 | docs(testing): describe coverage blackboxing rules (#7483) | Casper Beyer | |
2020-09-13 | docs: manual updates for 1.4 features and changes (#7440) | Luca Casonato | |
2020-08-24 | Typo (#7177) | Danny Denenberg | |
2020-07-31 | feat: add $STD_VERSION replacement variable in docs (#6922) | Luca Casonato | |
2020-07-07 | docs: Update testing.md (#6680) | Sebastien Filion | |
2020-07-07 | feat(test): Add support for regex in filter flag (#6343) | Sebastien Filion | |
Currently, the documentation makes it sound like the test subcommand's filter flag could accept some kind of pattern matching value like a glob or a regex, although the function "createFilterFn" accepts a regex as an argument, there's no way to pass an actual regex value from the CLI. This commit makes it possible to pass a string that could be cast as regex when string matches "^/.*/$". With this change, a user can use the filter flag as follow: deno test --filter "/test-.+/" Also tested that `\` get escaped properly, on MacOS at least, and this is also a valid flag: deno test --filter "/test-\d+/" | |||
2020-06-25 | fix typo (#6476) | champ | |
2020-06-18 | docs: Update standard library and testing manual pages (#6323) | Chris Knight | |
2020-06-16 | docs: testing filter info (#6313) | Rob Waller | |
2020-06-05 | deno test should run mjs files (#6122) | Taisuke Fukuno | |
2020-05-25 | Add missing async delay import to code sample (#5837) | Martin Suchanek | |
2020-05-21 | docs: fix test glob pattern (#5661) | Maple Miao | |
2020-05-10 | Docs for deno test + minor other changes (#5185) | Luca Casonato | |
* Added fs events example. * Added docs for `deno test`. * Renamed file server example. * Unified markdown code types. * Removed plugin topics from TOC. * Fixed links. |