aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-07-25 08:16:50 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-07-25 08:17:10 +0530
commitcf282aa351cbc58691fb1b2fb4764830247cdbe8 (patch)
tree1a6ac4c9abd8b3de9d358016a5065da86cdd8510 /test
parent6.0.1-nightly.3 [skip ci] (diff)
downloadferdium-app-cf282aa351cbc58691fb1b2fb4764830247cdbe8.tar.gz
ferdium-app-cf282aa351cbc58691fb1b2fb4764830247cdbe8.tar.zst
ferdium-app-cf282aa351cbc58691fb1b2fb4764830247cdbe8.zip
eslint needs to be executed at the top-level to actually workv6.0.1-nightly.3
Diffstat (limited to 'test')
-rw-r--r--test/helpers/update-helpers.test.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/helpers/update-helpers.test.ts b/test/helpers/update-helpers.test.ts
index 0494c6855..2b6bf3113 100644
--- a/test/helpers/update-helpers.test.ts
+++ b/test/helpers/update-helpers.test.ts
@@ -78,7 +78,10 @@ describe('onAuthGoToReleaseNotes', () => {
78 }); 78 });
79 79
80 it(`returns '#/releasenotes' string for empty string`, () => { 80 it(`returns '#/releasenotes' string for empty string`, () => {
81 const result = update_helpers.onAuthGoToReleaseNotes('#/auth', '?version=6.0.0'); 81 const result = update_helpers.onAuthGoToReleaseNotes(
82 '#/auth',
83 '?version=6.0.0',
84 );
82 expect(result).toEqual('#/auth/releasenotes?version=6.0.0'); 85 expect(result).toEqual('#/auth/releasenotes?version=6.0.0');
83 }); 86 });
84 87