mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 05:38:36 +00:00

Refs: https://github.com/nodejs/node/pull/43885 Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com> PR-URL: https://github.com/nodejs/node/pull/44860 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
8 lines
179 B
JavaScript
8 lines
179 B
JavaScript
// Flags: --no-experimental-global-customevent
|
|
'use strict';
|
|
|
|
require('../common');
|
|
const { strictEqual } = require('node:assert');
|
|
|
|
strictEqual(typeof CustomEvent, 'undefined');
|