diff options
Diffstat (limited to 'cli/tests/testdata/fmt/with_config/subdir/a.ts')
| -rw-r--r-- | cli/tests/testdata/fmt/with_config/subdir/a.ts | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/cli/tests/testdata/fmt/with_config/subdir/a.ts b/cli/tests/testdata/fmt/with_config/subdir/a.ts index 4baf8d485..5474b3aa3 100644 --- a/cli/tests/testdata/fmt/with_config/subdir/a.ts +++ b/cli/tests/testdata/fmt/with_config/subdir/a.ts @@ -4,33 +4,33 @@ Deno.test( const response = await fetch( 'http://localhost:4545/assets/fixture.json', - ); + ) const response1 = - response.clone(); + response.clone() assert( response !== response1, - ); + ) assertEquals( response.status, response1 .status, - ); + ) assertEquals( response.statusText, response1 .statusText, - ); + ) const u8a = new Uint8Array( await response .arrayBuffer(), - ); + ) const u8a1 = new Uint8Array( await response1 .arrayBuffer(), - ); + ) for ( let i = 0; i < @@ -40,7 +40,7 @@ Deno.test( assertEquals( u8a[i], u8a1[i], - ); + ) } }, -); +) |
