From f3d551c399570cdb0e9c9337836bc0d24bb55566 Mon Sep 17 00:00:00 2001 From: tshemsedinov Date: Mon, 10 Jun 2019 02:14:41 +0300 Subject: [PATCH] fixup! Implement AsyncEventEmitter --- test/async-emitter.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/async-emitter.js b/test/async-emitter.js index 652464dc..8ec82271 100644 --- a/test/async-emitter.js +++ b/test/async-emitter.js @@ -19,6 +19,8 @@ metatests.test('AsyncEmitter on/emit', async test => { test.strictSame(ae.count('e1'), 1); test.strictSame(ae.names().length, 1); + + test.end(); }); metatests.test('AsyncEmitter once', async test => { @@ -35,6 +37,8 @@ metatests.test('AsyncEmitter once', async test => { test.strictSame(ae.count('e1'), 0); test.strictSame(ae.names().length, 0); + + test.end(); }); metatests.test('AsyncEmitter await once', async test => {