From 248f16e4546a13127b3d511648d913923bc98b55 Mon Sep 17 00:00:00 2001 From: kamilkifer <47425451+kamilkifer@users.noreply.github.com> Date: Tue, 4 Jun 2024 15:03:41 +0100 Subject: [PATCH] test: remove empty query --- tests/query.spec.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/query.spec.ts b/tests/query.spec.ts index b4fae1b..8daeba1 100644 --- a/tests/query.spec.ts +++ b/tests/query.spec.ts @@ -25,9 +25,6 @@ describe('Query', () => { describe('#getAbTestParameter', () => { it('should return null if there is no query', () => { - const location = { - search: '', - }; const abtest = query.getAbTestParameter(location.search); expect(abtest).toBeNull(); });