Skip to content
Snippets Groups Projects

feat(shared): base event setup

Merged Berend Sliedrecht requested to merge event-restructuring into main
4 files
+ 18
12
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -29,7 +29,9 @@ describe('ConnectionsController', () => {
.spyOn(connectionsService, 'getAll')
.mockImplementation(() => Promise.resolve(result));
expect(await connectionsController.getAll()).toBe(result);
const connectionsEvent = await connectionsController.getAll();
expect(connectionsEvent.data).toStrictEqual({ connections: result });
});
});
});
Loading