diff options
author | 2023-07-17 20:57:08 +0800 | |
---|---|---|
committer | 2023-07-17 20:57:08 +0800 | |
commit | 1c8a225a5bdde57a9f1abf8a517ae2c583e4652b (patch) | |
tree | 87572535e6a3a48e8ca4bccb0e594aacdcbfc681 /packages/integrations/cloudflare/test/basics.test.js | |
parent | fcd23b4c56244fcd966828edeae288a66910bf9f (diff) | |
download | astro-1c8a225a5bdde57a9f1abf8a517ae2c583e4652b.tar.gz astro-1c8a225a5bdde57a9f1abf8a517ae2c583e4652b.tar.zst astro-1c8a225a5bdde57a9f1abf8a517ae2c583e4652b.zip |
Fix cloudflare runtime env var handling (#7679)
Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>
Co-authored-by: Matthew Phillips <matthew@skypack.dev>
Diffstat (limited to 'packages/integrations/cloudflare/test/basics.test.js')
-rw-r--r-- | packages/integrations/cloudflare/test/basics.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/cloudflare/test/basics.test.js b/packages/integrations/cloudflare/test/basics.test.js index b97079b8f..9aa78f98e 100644 --- a/packages/integrations/cloudflare/test/basics.test.js +++ b/packages/integrations/cloudflare/test/basics.test.js @@ -2,7 +2,7 @@ import { loadFixture, runCLI } from './test-utils.js'; import { expect } from 'chai'; import * as cheerio from 'cheerio'; -describe.skip('Basic app', () => { +describe('Basic app', () => { /** @type {import('./test-utils').Fixture} */ let fixture; /** @type {import('./test-utils').WranglerCLI} */ |