blob: 809c2ad3919a5c8d58d350f6f968e56248c8fb08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "./test_util.ts";
Deno.test(function progressEventConstruct() {
const progressEventDefs = new ProgressEvent("progressEventType", {});
assertEquals(progressEventDefs.lengthComputable, false);
assertEquals(progressEventDefs.loaded, 0);
assertEquals(progressEventDefs.total, 0);
const progressEvent = new ProgressEvent("progressEventType", {
lengthComputable: true,
loaded: 123,
total: 456,
});
assertEquals(progressEvent.lengthComputable, true);
assertEquals(progressEvent.loaded, 123);
assertEquals(progressEvent.total, 456);
});
|