diff options
author | 2024-02-16 18:41:16 +0700 | |
---|---|---|
committer | 2024-02-16 11:41:16 +0000 | |
commit | 220fd37c6315ace3916970de50dce106562e14b1 (patch) | |
tree | 664cc214baa8b0b2dcbdee5dc29167f4955ab1a6 /packages | |
parent | 1fdc1561d94f07d84ee9633598f2bd63aaa05595 (diff) | |
download | astro-220fd37c6315ace3916970de50dce106562e14b1.tar.gz astro-220fd37c6315ace3916970de50dce106562e14b1.tar.zst astro-220fd37c6315ace3916970de50dce106562e14b1.zip |
chore: Change `strictEqual` to `equal` (#10140)
Diffstat (limited to 'packages')
-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 () => { |