mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
6e2df8c64f
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 |
||
---|---|---|
.. | ||
testdata | ||
_fs_access.ts | ||
_fs_appendFile.ts | ||
_fs_appendFile_test.ts | ||
_fs_chmod.ts | ||
_fs_chmod_test.ts | ||
_fs_chown.ts | ||
_fs_chown_test.ts | ||
_fs_close.ts | ||
_fs_close_test.ts | ||
_fs_common.ts | ||
_fs_constants.ts | ||
_fs_dir.ts | ||
_fs_dir_test.ts | ||
_fs_dirent.ts | ||
_fs_dirent_test.ts | ||
_fs_readFile.ts | ||
_fs_readFile_test.ts | ||
_fs_readlink.ts | ||
_fs_readlink_test.ts |