(file, args)
| 216 | * @returns {Promise<CapturedConfig[]>} the resolved multi-compiler config |
| 217 | */ |
| 218 | const loadMultiConfig = async (file, args) => |
| 219 | /** @type {CapturedConfig[]} */ ( |
| 220 | /** @type {unknown} */ (await loadConfig(file, args)) |
| 221 | ); |
| 222 | |
| 223 | it("loads a defineConfig object configuration", async () => { |
| 224 | const config = await loadConfig("object.js"); |
no test coverage detected