From 101533cddd8845c1ec643a1a9b2f289d3e19f624 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Wed, 8 Sep 2021 21:49:40 +0200 Subject: [PATCH] fix(core): update --- package.json | 2 +- test/test.browser.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 738aec5..9df2b19 100644 --- a/package.json +++ b/package.json @@ -39,4 +39,4 @@ "browserslist": [ "last 1 chrome versions" ] -} +} \ No newline at end of file diff --git a/test/test.browser.ts b/test/test.browser.ts index b974d5a..f3889ad 100644 --- a/test/test.browser.ts +++ b/test/test.browser.ts @@ -35,12 +35,12 @@ tap.test('should find a query param', async (toolsArg) => { expect(routeInfoArg.params.wow).to.equal('hello2'); expect(routeInfoArg.queryParams.aparam).to.equal('Yes'); console.log('Here is what queryParams looks like'); - console.log(JSON.stringify(routeInfoArg.queryParams)) + console.log(JSON.stringify(routeInfoArg.queryParams)); done.resolve(); }); testrouter.pushUrl('/myawesomeroute2/hello2?aparam=Yes'); await done.promise; expect(window.location.href).to.equal('http://localhost:3007/myawesomeroute2/hello2?aparam=Yes'); -}) +}); tap.start();