fix types

This commit is contained in:
Yann Braga 2024-08-20 15:45:57 +02:00
parent e554a7f6b3
commit 518d76b92b

View File

@ -239,7 +239,7 @@ export async function vitestTransform({
node,
});
})
.filter((st) => !!st);
.filter((st) => !!st) as t.ExpressionStatement[];
const testBlock = t.ifStatement(isRunningFromThisFileId, t.blockStatement(storyTestStatements));