mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
29 lines
607 B
TypeScript
29 lines
607 B
TypeScript
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
||
|
|
||
|
import { deferred } from "../../../test_util/std/async/deferred.ts";
|
||
|
import { EventEmitter } from "node:events";
|
||
|
|
||
|
EventEmitter.captureRejections = true;
|
||
|
|
||
|
Deno.test("regression #20441", async () => {
|
||
|
const promise = deferred();
|
||
|
|
||
|
const ee = new EventEmitter();
|
||
|
|
||
|
ee.on("foo", function () {
|
||
|
const p = new Promise((_resolve, reject) => {
|
||
|
setTimeout(() => {
|
||
|
reject();
|
||
|
}, 100);
|
||
|
});
|
||
|
return p;
|
||
|
});
|
||
|
|
||
|
ee.on("error", function (_) {
|
||
|
promise.resolve();
|
||
|
});
|
||
|
|
||
|
ee.emit("foo");
|
||
|
await promise;
|
||
|
});
|