summaryrefslogtreecommitdiff
path: root/std/io/util_test.ts
AgeCommit message (Collapse)Author
2020-10-20fix(std/io): remove trivial internal util.ts module (#8032)Casper Beyer
2020-06-25refactor: shift copyBytes and tweak deps to reduce dependencies (#6469)Chris Knight
2020-06-12refactor: Don't destructure the Deno namespace (#6268)Nayeem Rahman
2020-04-30BREAKING: reorder std/io/utils copyBytes arguments (#5022)Marcos Casagrande
2020-03-28Update to Prettier 2 and use ES Private Fields (#4498)Kitson Kelly
2020-03-18feat: Deno.test() sanitizes ops and resources (#4399)Bartek Iwańczuk
This PR brings assertOps and assertResources sanitizers to Deno.test() API. assertOps checks that test doesn't leak async ops, ie. there are no unresolved promises originating from Deno APIs. Enabled by default, can be disabled using Deno.TestDefinition.disableOpSanitizer. assertResources checks that test doesn't leak resources, ie. all resources used in test are closed. For example; if a file is opened during a test case it must be explicitly closed before test case finishes. It's most useful for asynchronous generators. Enabled by default, can be disabled using Deno.TestDefinition.disableResourceSanitizer. We've used those sanitizers in internal runtime tests and it proved very useful in surfacing incorrect tests which resulted in interference between the tests. All tests have been sanitized. Closes #4208
2020-02-27reduce unnecessary output on tests (#4148)Yusuke Sakurai
2020-02-11refactor: rewrite tests in std/ to use Deno.test (#3930)Bartek Iwańczuk
2020-01-02Happy new year! (#3578)Ry Dahl
2019-10-16std: Move fs/path to the top-level (#3100)Nayeem Rahman
2019-10-09Move everything into std subdirRyan Dahl