diff options
author | 2024-09-02 17:40:53 +0100 | |
---|---|---|
committer | 2024-09-02 17:40:53 +0100 | |
commit | a1d78b75aa86e496534a7d8e90deffbcac07ca48 (patch) | |
tree | 9052792e64dc977bb2e60b645c2131feaaa3bb02 /packages/integrations/vercel/test/static-assets.test.js | |
parent | 3ab3b4efbcdd2aabea5f949deedf51a5acefae59 (diff) | |
parent | cd542109ba5b39598da6573f128c6783a6701215 (diff) | |
download | astro-a1d78b75aa86e496534a7d8e90deffbcac07ca48.tar.gz astro-a1d78b75aa86e496534a7d8e90deffbcac07ca48.tar.zst astro-a1d78b75aa86e496534a7d8e90deffbcac07ca48.zip |
Merge branch 'main' into next
Diffstat (limited to 'packages/integrations/vercel/test/static-assets.test.js')
-rw-r--r-- | packages/integrations/vercel/test/static-assets.test.js | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/packages/integrations/vercel/test/static-assets.test.js b/packages/integrations/vercel/test/static-assets.test.js deleted file mode 100644 index 37d3a0577..000000000 --- a/packages/integrations/vercel/test/static-assets.test.js +++ /dev/null @@ -1,72 +0,0 @@ -import assert from 'node:assert/strict'; -import { describe, it } from 'node:test'; -import { loadFixture } from './test-utils.js'; - -describe('Static Assets', () => { - /** @type {import('../../../astro/test/test-utils.js').Fixture} */ - let fixture; - - const VALID_CACHE_CONTROL = 'public, max-age=31536000, immutable'; - - async function build({ adapter, assets, output }) { - fixture = await loadFixture({ - root: './fixtures/static-assets/', - output, - adapter, - build: { - assets, - }, - }); - await fixture.build(); - } - - async function getConfig() { - const json = await fixture.readFile('../.vercel/output/config.json'); - const config = JSON.parse(json); - - return config; - } - - async function getAssets() { - return fixture.config.build.assets; - } - - async function checkValidCacheControl(assets) { - const config = await getConfig(); - const theAssets = assets ?? (await getAssets()); - - const route = config.routes.find((r) => r.src === `^/${theAssets}/(.*)$`); - assert.equal(route.headers['cache-control'], VALID_CACHE_CONTROL); - assert.equal(route.continue, true); - } - - describe('static adapter', () => { - it('has cache control', async () => { - const { default: vercel } = await import('@astrojs/vercel/static'); - await build({ adapter: vercel() }); - await checkValidCacheControl(); - }); - - it('has cache control other assets', async () => { - const { default: vercel } = await import('@astrojs/vercel/static'); - const assets = '_foo'; - await build({ adapter: vercel(), assets }); - await checkValidCacheControl(assets); - }); - }); - - describe('serverless adapter', () => { - it('has cache control', async () => { - const { default: vercel } = await import('@astrojs/vercel/serverless'); - await build({ output: 'server', adapter: vercel() }); - await checkValidCacheControl(); - }); - - it('has cache control other assets', async () => { - const { default: vercel } = await import('@astrojs/vercel/serverless'); - const assets = '_foo'; - await build({ output: 'server', adapter: vercel(), assets }); - await checkValidCacheControl(assets); - }); - }); -}); |