* Tests for solidJs need the solid plugin to run on config level and on test level. idk why
(config: UserWorkspaceConfig)
| 45 | * Tests for solidJs need the solid plugin to run on config level and on test level. idk why |
| 46 | */ |
| 47 | function copySolidPlugin(config: UserWorkspaceConfig): void { |
| 48 | if (!config.plugins) return; |
| 49 | config.plugins |
| 50 | //@ts-expect-error this is fine |
| 51 | .filter((it) => it?.name === "solid") |
| 52 | .forEach((it) => globalPlugins.push(it)); |
| 53 | } |