summaryrefslogtreecommitdiff
path: root/packages/integrations/vercel/test/static-assets.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/vercel/test/static-assets.test.js')
-rw-r--r--packages/integrations/vercel/test/static-assets.test.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/packages/integrations/vercel/test/static-assets.test.js b/packages/integrations/vercel/test/static-assets.test.js
index c22ad5019..7f360aebc 100644
--- a/packages/integrations/vercel/test/static-assets.test.js
+++ b/packages/integrations/vercel/test/static-assets.test.js
@@ -66,19 +66,4 @@ describe('Static Assets', () => {
checkValidCacheControl(assets);
});
});
-
- describe('edge adapter', async () => {
- const adapter = await import('@astrojs/vercel/edge');
-
- it('has cache control', async () => {
- await build({ adapter });
- checkValidCacheControl();
- });
-
- it('has cache control other assets', async () => {
- const assets = '_foo';
- await build({ adapter, assets });
- checkValidCacheControl(assets);
- });
- });
});