(config)
| 14 | * @returns {import(class="st">"../").Compiler} compiler |
| 15 | */ |
| 16 | const createCompiler = (config) => { |
| 17 | const webpack = require(class="st">".."); |
| 18 | |
| 19 | const compiler = /** @type {import(class="st">"../").Compiler} */ (webpack(config)); |
| 20 | compiler.outputFileSystem = /** @type {EXPECTED_ANY} */ ( |
| 21 | createFsFromVolume(new Volume()) |
| 22 | ); |
| 23 | return compiler; |
| 24 | }; |
| 25 | |
| 26 | const tempFolderPath = path.join(__dirname, class="st">"ChangesAndRemovalsTemp"); |
| 27 | const tempFilePath = path.join(tempFolderPath, class="st">"temp-file.js"); |
no test coverage detected