We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 320d79a commit a869f8fCopy full SHA for a869f8f
packages/firestore/test/unit/core/event_manager.test.ts
@@ -38,7 +38,7 @@ import {
38
query
39
} from '../../util/helpers';
40
41
-describe('EventManager', () => {
+describe.only('EventManager', () => {
42
// mock object.
43
// eslint-disable-next-line @typescript-eslint/no-explicit-any
44
function fakeQueryListener(query: Query): any {
@@ -74,7 +74,7 @@ describe('EventManager', () => {
74
expect(onListenSpy.callCount).to.equal(1);
75
76
await eventManager.unlisten(fakeListener2);
77
- expect(onListenSpy.callCount).to.equal(0);
+ expect(onUnlistenSpy.callCount).to.equal(0);
78
79
await eventManager.unlisten(fakeListener1);
80
expect(onUnlistenSpy.calledWith(query1)).to.be.true;
0 commit comments