diff options
Diffstat (limited to 'packages/integrations/node/test/well-known-locations.test.js')
-rw-r--r-- | packages/integrations/node/test/well-known-locations.test.js | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/packages/integrations/node/test/well-known-locations.test.js b/packages/integrations/node/test/well-known-locations.test.js deleted file mode 100644 index 0951d6c27..000000000 --- a/packages/integrations/node/test/well-known-locations.test.js +++ /dev/null @@ -1,46 +0,0 @@ -import * as assert from 'node:assert/strict'; -import { after, before, describe, it } from 'node:test'; -import nodejs from '../dist/index.js'; -import { loadFixture } from './test-utils.js'; - -describe('test URIs beginning with a dot', () => { - /** @type {import('./test-utils').Fixture} */ - let fixture; - - before(async () => { - fixture = await loadFixture({ - root: './fixtures/well-known-locations/', - output: 'server', - adapter: nodejs({ mode: 'standalone' }), - }); - await fixture.build(); - }); - - describe('can load well-known URIs', async () => { - let devPreview; - - before(async () => { - devPreview = await fixture.preview(); - }); - - after(async () => { - await devPreview.stop(); - }); - - it('can load a valid well-known URI', async () => { - const res = await fixture.fetch('/.well-known/apple-app-site-association'); - - assert.equal(res.status, 200); - - const json = await res.json(); - - assert.notEqual(json.applinks, {}); - }); - - it('cannot load a dot folder that is not a well-known URI', async () => { - const res = await fixture.fetch('/.hidden/file.json'); - - assert.equal(res.status, 404); - }); - }); -}); |