Commit 561561d8 by Torkel Ödegaard

fix: fixed build issue

parent 66edb29f
......@@ -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');
});
});
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment