We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 023e7f4 commit a8c32e4Copy full SHA for a8c32e4
1 file changed
packages/utils/__tests__/utils.test.ts
@@ -1672,10 +1672,12 @@ describe("Package: utils", () => {
1672
writeFile({ file: secondInput, content: "second" });
1673
1674
const webpContent = Buffer.from("SECOND_INPUT_WEBP");
1675
- const compressor: Settings["compressor"] = vi.fn().mockResolvedValue({
1676
- code: "",
1677
- outputs: [{ format: "webp", content: webpContent }],
1678
- });
+ const compressor: Settings["compressor"] = vi
+ .fn()
+ .mockResolvedValue({
+ code: "",
1679
+ outputs: [{ format: "webp", content: webpContent }],
1680
+ });
1681
const settings: Settings = {
1682
compressor,
1683
input: [firstInput, secondInput],
0 commit comments