From fe88f89512d583e651f114fe010a35b33bae1910 Mon Sep 17 00:00:00 2001 From: Emanuele Stoppa Date: Tue, 7 Mar 2023 13:41:24 +0000 Subject: chore: use directive `@ts-expect-error` instead of `@ts-ignore` (#6429) --- packages/integrations/netlify/test/edge-functions/test-utils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages/integrations/netlify/test/edge-functions/test-utils.ts') diff --git a/packages/integrations/netlify/test/edge-functions/test-utils.ts b/packages/integrations/netlify/test/edge-functions/test-utils.ts index 7c2400d93..7ba078a3a 100644 --- a/packages/integrations/netlify/test/edge-functions/test-utils.ts +++ b/packages/integrations/netlify/test/edge-functions/test-utils.ts @@ -1,9 +1,9 @@ -// @ts-ignore +// @ts-expect-error import { fromFileUrl, readableStreamFromReader } from './deps.ts'; const dir = new URL('./', import.meta.url); export async function runBuild(fixturePath: string) { - // @ts-ignore + // @ts-expect-error let proc = Deno.run({ cmd: ['node', '../../../../../../astro/astro.js', 'build', '--silent'], cwd: fromFileUrl(new URL(fixturePath, dir)), -- cgit v1.2.3