Skip to content

Commit 010389b

Browse files
Address PR Comments
1 parent 6791291 commit 010389b

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

test/jest/utils.spec.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -133,12 +133,7 @@ describe('Utils', () => {
133133
});
134134

135135
it('returns an empty object if there are no query parameters', () => {
136-
expect(
137-
queryStringParser('https://www.example.com', [
138-
'foo',
139-
'narf',
140-
])
141-
).toEqual({});
136+
expect(queryStringParser('https://www.example.com', ['foo', 'narf'])).toEqual({});
142137
});
143138

144139
it('returns an object with all the query string parameters if no keys are passed', () => {

0 commit comments

Comments
 (0)