From 6c948437bd3e18af951b42c0680a182e222e9185 Mon Sep 17 00:00:00 2001 From: Kevin Jennison Date: Mon, 29 Mar 2021 13:58:17 -0700 Subject: [PATCH] Test name tweaks --- src/utils/__tests__/navigationUtils.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/utils/__tests__/navigationUtils.test.js b/src/utils/__tests__/navigationUtils.test.js index 52787e23..b4cee120 100644 --- a/src/utils/__tests__/navigationUtils.test.js +++ b/src/utils/__tests__/navigationUtils.test.js @@ -10,7 +10,7 @@ afterEach(() => { }) describe('isURLForDifferentApp', () => { - it('[absolute URL] is not a different app when the URL is absolute with the same domain and a "newtab" path', () => { + it('[absolute URL] is *not* a different app when the URL is absolute with the same domain and a "newtab" path', () => { const { isURLForDifferentApp } = require('src/utils/navigationUtils') setWindowLocation({ host: 'example.com', @@ -57,7 +57,7 @@ describe('isURLForDifferentApp', () => { ) }) - it('[relative URL] is not a different app if the URL is exactly the same with a newtab subpath', () => { + it('[relative URL] is *not* a different app if the URL is exactly the same with a "newtab" subpath', () => { const { isURLForDifferentApp } = require('src/utils/navigationUtils') setWindowLocation({ host: 'example.com', @@ -72,7 +72,7 @@ describe('isURLForDifferentApp', () => { expect(isURLForDifferentApp('/newtab/path/')).toBe(false) }) - it('[relative URL] is not a differenta app if the URLs are both on the "newtab" subpath', () => { + it('[relative URL] is *not* a different app if the URL has a "newtab" subpath', () => { const { isURLForDifferentApp } = require('src/utils/navigationUtils') setWindowLocation({ host: 'example.com',