1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/cli/tests/testdata/test
Casper Beyer b9a965c607
refactor(cli): introduce module specifier test modes (#11769)
This commit merges the two vectors of specifiers into a single one introducing
the concept of a "TestMode" which is a tri-state enum specifying how a specifier
is to be tested (as documentation, as an executable module or as both).

This is determined during the collection phase and determines how a specifier
will be executed based on how the specifier was collected (directly or not) and
if it has an eligible media_type when fetched.

For example "deno test README.md" is marked as documentation because, while it
is a direct inclusion it is not an executable media type therefore will only
have the fenced code blocks that can be parsed from it tested.
2021-08-26 21:21:58 +02:00
..
collect feat(cli): add --ignore flag to test command (#11712) 2021-08-24 17:23:29 +02:00
filter test(cli): add test for test filtering (#11672) 2021-08-13 11:33:18 +02:00
shuffle chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
allow_all.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
allow_all.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
allow_none.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
allow_none.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
clear_timeout.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
clear_timeout.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
collect.out feat(cli): add --ignore flag to test command (#11712) 2021-08-24 17:23:29 +02:00
doc.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
doc.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
exit_sanitizer.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
exit_sanitizer.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fail.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fail.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fail_fast.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fail_fast.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fail_fast_with_val.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fail_fast_with_val.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
filter.out test(cli): add test for test filtering (#11672) 2021-08-13 11:33:18 +02:00
finally_timeout.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
finally_timeout.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ignore.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ignore.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ignore_permissions.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ignore_permissions.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
load_unload.out fix(test): dispatch load event before tests are run (#11708) 2021-08-15 13:54:44 +02:00
load_unload.ts fix(test): dispatch load event before tests are run (#11708) 2021-08-15 13:54:44 +02:00
markdown.md fix(cli): explicitly scan for ignore attribute in inline tests (#11647) 2021-08-14 12:33:58 +02:00
markdown.out fix(cli): explicitly scan for ignore attribute in inline tests (#11647) 2021-08-14 12:33:58 +02:00
meta.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
meta.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
no_check.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
no_check.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
no_color.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
no_run.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
no_run.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
only.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
only.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
pass.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
pass.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
quiet.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
quiet.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
shuffle.out refactor(cli): introduce module specifier test modes (#11769) 2021-08-26 21:21:58 +02:00
text.md fix(cli): allow specifiers of unknown media types with test command (#11652) 2021-08-12 20:10:14 +02:00
text.out fix(cli): allow specifiers of unknown media types with test command (#11652) 2021-08-12 20:10:14 +02:00
unhandled_rejection.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unhandled_rejection.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unresolved_promise.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unresolved_promise.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00