diff options
Diffstat (limited to 'cli/tests/unit/progressevent_test.ts')
-rw-r--r-- | cli/tests/unit/progressevent_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/unit/progressevent_test.ts b/cli/tests/unit/progressevent_test.ts index 4d6b4c08f..271180d88 100644 --- a/cli/tests/unit/progressevent_test.ts +++ b/cli/tests/unit/progressevent_test.ts @@ -1,7 +1,7 @@ // Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. -import { assertEquals, unitTest } from "./test_util.ts"; +import { assertEquals } from "./test_util.ts"; -unitTest(function progressEventConstruct() { +Deno.test(function progressEventConstruct() { const progressEventDefs = new ProgressEvent("progressEventType", {}); assertEquals(progressEventDefs.lengthComputable, false); assertEquals(progressEventDefs.loaded, 0); |