mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
c42a9d7370
A major API change was that asserts are imported from testing/asserts.ts now rather than testing/mod.ts and assertEqual as renamed to assertEquals to conform to what is most common in JavaScript.
21 lines
678 B
TypeScript
21 lines
678 B
TypeScript
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
|
import { test, assertEquals } from "./test_util.ts";
|
|
|
|
test(function customEventInitializedWithDetail() {
|
|
const type = "touchstart";
|
|
const detail = { message: "hello" };
|
|
const customEventDict = new CustomEventInit({
|
|
bubbles: true,
|
|
cancelable: true,
|
|
detail
|
|
});
|
|
const event = new CustomEvent(type, customEventDict);
|
|
|
|
assertEquals(event.bubbles, true);
|
|
assertEquals(event.cancelable, true);
|
|
assertEquals(event.currentTarget, null);
|
|
assertEquals(event.detail, detail);
|
|
assertEquals(event.isTrusted, false);
|
|
assertEquals(event.target, null);
|
|
assertEquals(event.type, type);
|
|
});
|