From f7498d5a440de6a8bce79f2fa6f48863689299e8 Mon Sep 17 00:00:00 2001 From: anubra266 Date: Tue, 23 Jan 2024 08:07:19 -0600 Subject: [PATCH] intentional test fail --- plugin/src/utils/worker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/src/utils/worker.ts b/plugin/src/utils/worker.ts index 3cb7362..9784423 100644 --- a/plugin/src/utils/worker.ts +++ b/plugin/src/utils/worker.ts @@ -20,7 +20,7 @@ async function _getContext(configPath: string | undefined) { export async function getContext(opts: Opts) { if (process.env.NODE_ENV === 'test') { - const ctx = createContext({ importMap: './panda' }) + const ctx = createContext({ importMap: './pandas' }) ctx.getFiles = () => ['./src/valid.tsx'] return ctx } else {