fix: fixed build issue

This commit is contained in:
Torkel Ödegaard 2018-01-17 10:48:07 +01:00
parent 66edb29f53
commit 561561d8fe

View File

@ -20,7 +20,7 @@ describe('ViewStore', () => {
it('Query can contain arrays', () => {
store.updatePathAndQuery('/hello', { values: ['A', 'B'] });
expect(store.query.get('values').toJS()).toMatchObject(['A', 'B']);
expect(toJS(store.query.get('values'))).toMatchObject(['A', 'B']);
expect(store.currentUrl).toBe('/hello?values=A&values=B');
});
});