diff options
Diffstat (limited to 'packages/integrations/netlify/test/edge-functions/deps.ts')
-rw-r--r-- | packages/integrations/netlify/test/edge-functions/deps.ts | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/packages/integrations/netlify/test/edge-functions/deps.ts b/packages/integrations/netlify/test/edge-functions/deps.ts index 498b7e09e..c6ced8814 100644 --- a/packages/integrations/netlify/test/edge-functions/deps.ts +++ b/packages/integrations/netlify/test/edge-functions/deps.ts @@ -1,5 +1,11 @@ // @ts-nocheck export { fromFileUrl } from 'https://deno.land/std@0.110.0/path/mod.ts'; -export { assertEquals, assert } from 'https://deno.land/std@0.132.0/testing/asserts.ts'; +export { + assertEquals, + assert, + assertExists, +} from 'https://deno.land/std@0.132.0/testing/asserts.ts'; export * from 'https://deno.land/x/deno_dom/deno-dom-wasm.ts'; export * from 'https://deno.land/std@0.142.0/streams/conversion.ts'; +export * as cheerio from 'https://cdn.skypack.dev/cheerio?dts'; +export * as fs from 'https://deno.land/std/fs/mod.ts'; |