Skip to content

Commit 2830cd3

Browse files
committed
fix(InstantSearch): throw error when init and render are not defined. Fixes #499
1 parent fbeff9b commit 2830cd3

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

lib/InstantSearch.js

+4
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ Usage: instantsearch({
5151

5252
addWidget(widgetDefinition) {
5353
// Add the widget to the list of widget
54+
if (widgetDefinition.render === undefined && widgetDefinition.init === undefined) {
55+
throw new Error('Widget definition missing render or init method');
56+
}
57+
5458
this.widgets.push(widgetDefinition);
5559
}
5660

lib/__tests__/InstantSearch-test.js

+15
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,20 @@ describe('InstantSearch lifecycle', () => {
6868
expect(algoliasearchHelper.notCalled).toBe(true, 'algoliasearchHelper not yet called');
6969
});
7070

71+
context('when adding a widget without render and init', () => {
72+
let widget;
73+
74+
beforeEach(() => {
75+
widget = {};
76+
});
77+
78+
it('throw an error', function() {
79+
expect(() => {
80+
search.addWidget(widget);
81+
}).toThrow('Widget definition missing render or init method');
82+
});
83+
});
84+
7185
context('when adding a widget', () => {
7286
let widget;
7387

@@ -148,6 +162,7 @@ describe('InstantSearch lifecycle', () => {
148162
widgets = range(5);
149163
widgets = widgets.map((widget, widgetIndex) => {
150164
widget = {
165+
init: function() {},
151166
getConfiguration: sinon.stub().returns({values: [widgetIndex]})
152167
};
153168

0 commit comments

Comments
 (0)