diff options
author | 2024-02-16 18:41:16 +0700 | |
---|---|---|
committer | 2024-02-16 11:41:16 +0000 | |
commit | 5ff288f61b51f9c5f0d8cc9ebd371a8d881c68fd (patch) | |
tree | 88ea7f2502e989a430f4a0fee55ebd163b45a7c2 /packages/integrations/node/test | |
parent | 7bdcfb750ae5e8a9e2a0ee68c7ac03b82215d08f (diff) | |
download | astro-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.js | 2 |
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 () => { |