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 cf4db16 commit a6ec29fCopy full SHA for a6ec29f
src/LiveComponent/assets/test/url_utils.test.ts
@@ -125,9 +125,8 @@ describe('url_utils', () => {
125
});
126
127
it('parses a query string with value', () => {
128
- urlUtils.search = '?param1=¶m2=value2';
129
- expect(urlUtils.get('param1')).toEqual('');
130
- expect(urlUtils.get('param2')).toEqual('value2');
+ urlUtils.search = '?param1=value1';
+ expect(urlUtils.get('param1')).toEqual('value1');
131
132
133
it('parses a query string with empty value', () => {
0 commit comments