blob: 13abf5f7957845d52ca24a4f4557e81d239ab0d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { EventEmitter } from "node:events";
EventEmitter.captureRejections = true;
Deno.test("regression #20441", async () => {
const { promise, resolve } = Promise.withResolvers<void>();
const ee = new EventEmitter();
ee.on("foo", function () {
const p = new Promise((_resolve, reject) => {
setTimeout(() => {
reject();
}, 100);
});
return p;
});
ee.on("error", function (_) {
resolve();
});
ee.emit("foo");
await promise;
});
|