diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2024-01-13 10:39:22 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-13 10:39:22 -0500 |
| commit | daed58855775b4da042272a296b500d9b9e76e7d (patch) | |
| tree | ae5312c8bff3ecb71d2a97d9e291f1018cd2baec /cli/tests/testdata/test/relative_pattern_dot_slash/deno.json | |
| parent | 0b9c06b632f25454f4aace8565830195e8320677 (diff) | |
fix(config): regression - handle relative patterns with leading dot slash (#21922)
This is a hacky quick fix. We need to spend more time cleaning up this
code and push more stuff down into deno_config.
Closes #21916
Diffstat (limited to 'cli/tests/testdata/test/relative_pattern_dot_slash/deno.json')
| -rw-r--r-- | cli/tests/testdata/test/relative_pattern_dot_slash/deno.json | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cli/tests/testdata/test/relative_pattern_dot_slash/deno.json b/cli/tests/testdata/test/relative_pattern_dot_slash/deno.json new file mode 100644 index 000000000..7c2c4a5d3 --- /dev/null +++ b/cli/tests/testdata/test/relative_pattern_dot_slash/deno.json @@ -0,0 +1,7 @@ +{ + "test": { + "include": [ + "./test/**/*.test.mjs" + ] + } +} |
