diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-11-23 17:45:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-23 17:45:18 +0100 |
| commit | bedb2adfb065c1b0d3bcb773fbeff91230402b6b (patch) | |
| tree | b4d90c36f2409f7f9b6247b74e9c111a38befcdf /cli/tests/testdata/fmt/fmt_with_config | |
| parent | 51e3db956a5927229e3f46f4eaaf317e935f8f17 (diff) | |
refactor: remove "unitTest" wrapper from cli/tests/unit (#12750)
Diffstat (limited to 'cli/tests/testdata/fmt/fmt_with_config')
| -rw-r--r-- | cli/tests/testdata/fmt/fmt_with_config/a.ts | 2 | ||||
| -rw-r--r-- | cli/tests/testdata/fmt/fmt_with_config/b.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/testdata/fmt/fmt_with_config/a.ts b/cli/tests/testdata/fmt/fmt_with_config/a.ts index e0f32647b..50db0d2e1 100644 --- a/cli/tests/testdata/fmt/fmt_with_config/a.ts +++ b/cli/tests/testdata/fmt/fmt_with_config/a.ts @@ -1,4 +1,4 @@ -unitTest( +Deno.test( { perms: { net: true } }, async function responseClone() { const response = diff --git a/cli/tests/testdata/fmt/fmt_with_config/b.ts b/cli/tests/testdata/fmt/fmt_with_config/b.ts index 5c37d51d2..840198d89 100644 --- a/cli/tests/testdata/fmt/fmt_with_config/b.ts +++ b/cli/tests/testdata/fmt/fmt_with_config/b.ts @@ -1,5 +1,5 @@ // This file should be excluded from formatting -unitTest( +Deno.test( { perms: { net: true } }, async function fetchBodyUsedCancelStream() { const response = await fetch( |
