aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/node/test
diff options
context:
space:
mode:
authorGravatar ktym4a <shoma@ktym4a.me> 2024-02-16 18:41:16 +0700
committerGravatar GitHub <noreply@github.com> 2024-02-16 11:41:16 +0000
commit5ff288f61b51f9c5f0d8cc9ebd371a8d881c68fd (patch)
tree88ea7f2502e989a430f4a0fee55ebd163b45a7c2 /packages/integrations/node/test
parent7bdcfb750ae5e8a9e2a0ee68c7ac03b82215d08f (diff)
downloadastro-5ff288f61b51f9c5f0d8cc9ebd371a8d881c68fd.tar.gz
astro-5ff288f61b51f9c5f0d8cc9ebd371a8d881c68fd.tar.zst
astro-5ff288f61b51f9c5f0d8cc9ebd371a8d881c68fd.zip
chore: Change `strictEqual` to `equal` (#10140)
Diffstat (limited to 'packages/integrations/node/test')
-rw-r--r--packages/integrations/node/test/well-known-locations.test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/node/test/well-known-locations.test.js b/packages/integrations/node/test/well-known-locations.test.js
index 934673cda..39d7ccedb 100644
--- a/packages/integrations/node/test/well-known-locations.test.js
+++ b/packages/integrations/node/test/well-known-locations.test.js
@@ -34,7 +34,7 @@ describe('test URIs beginning with a dot', () => {
const json = await res.json();
- assert.notStrictEqual(json.applinks, {});
+ assert.notEqual(json.applinks, {});
});
it('cannot load a dot folder that is not a well-known URI', async () => {