(args, options)
| 5 | const require = createRequire(import.meta.url); |
| 6 | |
| 7 | function runExperimentalCli(args, options) { |
| 8 | return runCli("cli/experimental-cli", [...args, "--no-cache"], { |
| 9 | title: args.join(" "), |
| 10 | ...options, |
| 11 | env: { ...options?.env, PRETTIER_EXPERIMENTAL_CLI: 1 }, |
| 12 | }); |
| 13 | } |
| 14 | |
| 15 | const code = 'console.log("Hello, world!");\n'; |
| 16 | const unformatted = ` |
no test coverage detected
searching dependent graphs…