()
| 49 | const workerPath = require.resolve("../src/minify"); |
| 50 | |
| 51 | const getParallelism = () => { |
| 52 | if (typeof os.availableParallelism !== "undefined") { |
| 53 | return os.availableParallelism(); |
| 54 | } |
| 55 | |
| 56 | return os.cpus().length; |
| 57 | }; |
| 58 | |
| 59 | describe("parallel option", () => { |
| 60 | let compiler; |
no outgoing calls
no test coverage detected
searching dependent graphs…