From 43546c16ea66d355a607aea4b936e14a36918d4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20T=C3=B3ta?= Date: Wed, 11 Sep 2024 15:44:43 +0300 Subject: [PATCH] tests/scriptlets/trusted-set-cookie.test.js edited online with Bitbucket --- tests/scriptlets/trusted-set-cookie.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scriptlets/trusted-set-cookie.test.js b/tests/scriptlets/trusted-set-cookie.test.js index 1afc20cc..d8f0da10 100644 --- a/tests/scriptlets/trusted-set-cookie.test.js +++ b/tests/scriptlets/trusted-set-cookie.test.js @@ -127,7 +127,7 @@ test('Set cookie with expires', (assert) => { const done = assert.async(); setTimeout(() => { - // It looks like Chrome is caching document.cookie and value is not updated, + // It looks like Chrome is caching `document.cookie` and value is not updated, // so as a workaround we remove dummy cookie to force update of `document.cookie` clearCookie('dummyCookie'); assert.strictEqual(document.cookie.includes(cName), false, 'Cookie name has been deleted');