Skip to content

Commit

Permalink
test: remove failing modifier from test
Browse files Browse the repository at this point in the history
The listeners count test was failing earlier, since there was a bug
in emittery and the same has been fixed.
sindresorhus/emittery@fad52b9
  • Loading branch information
thetutlage committed Apr 22, 2024
1 parent bc61dae commit 1258716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/emitter/main.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ test.group('Emitter', () => {
assert.equal(emitter.listenerCount('resend:email'), 0)
assert.deepEqual(emitter.eventsListeners.get('new:user')?.size, 1)
assert.deepEqual(emitter.eventsListeners.get(UserRegistered)?.size, 1)
}).fails('Emittery has a bug')
})

test('get count of listeners for any event', async ({ assert }) => {
const app = new Application(BASE_URL, { environment: 'web' })
Expand Down

0 comments on commit 1258716

Please sign in to comment.