blob: 6c447f05d5eab407eacfd0c1d526c3f4fe81f331 (
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-2023 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;
});
|