Skip to content

Commit ec81fec

Browse files
committed
Fix types
1 parent 6f610c2 commit ec81fec

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed
File renamed without changes.

plugin/src/utils/worker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ async function _getContext(configPath: string | undefined) {
2222
export async function getContext(opts: Opts) {
2323
if (process.env.NODE_ENV === 'test') {
2424
configPath = opts.configPath
25-
const ctx = createContext({ importMap: './panda' })
25+
const ctx = createContext({ importMap: './panda' }) as unknown as PandaContext
2626
ctx.getFiles = () => ['App.tsx']
2727
return ctx
2828
} else {

0 commit comments

Comments
 (0)