aboutsummaryrefslogtreecommitdiffstats
path: root/test/helpers/update-helpers.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test/helpers/update-helpers.test.ts')
-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