diff options
author | Mark Ladyshau <47859603+mrkldshv@users.noreply.github.com> | 2022-06-29 14:29:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-29 14:29:08 +0200 |
commit | 6743b3227b21d2814380253f8e8a0e2c116fb0f7 (patch) | |
tree | b8a1c01a3bdfd61708cc7be7d125e7d78a82b03e /cli/tests | |
parent | 5eb9abd65f97e43b50aeb724deb8e3b7847681e9 (diff) |
fix(ext/web): remove `ErrorEventInit`'s error default (#14809)
Diffstat (limited to 'cli/tests')
-rw-r--r-- | cli/tests/unit/event_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/unit/event_test.ts b/cli/tests/unit/event_test.ts index 5c82e6823..2a9288937 100644 --- a/cli/tests/unit/event_test.ts +++ b/cli/tests/unit/event_test.ts @@ -104,7 +104,7 @@ Deno.test(function eventInspectOutput() { [ new ErrorEvent("error"), (event: Event) => - `ErrorEvent {\n bubbles: false,\n cancelable: false,\n composed: false,\n currentTarget: null,\n defaultPrevented: false,\n eventPhase: 0,\n srcElement: null,\n target: null,\n returnValue: true,\n timeStamp: ${event.timeStamp},\n type: "error",\n message: "",\n filename: "",\n lineno: 0,\n colno: 0,\n error: null\n}`, + `ErrorEvent {\n bubbles: false,\n cancelable: false,\n composed: false,\n currentTarget: null,\n defaultPrevented: false,\n eventPhase: 0,\n srcElement: null,\n target: null,\n returnValue: true,\n timeStamp: ${event.timeStamp},\n type: "error",\n message: "",\n filename: "",\n lineno: 0,\n colno: 0,\n error: undefined\n}`, ], [ new CloseEvent("close"), |