From e6bd37a5c965ac6e4847192517df2b80967471a1 Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 3 Feb 2026 17:50:07 +0000 Subject: [PATCH] Prettier --- packages/shared-components/vitest.config.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/packages/shared-components/vitest.config.ts b/packages/shared-components/vitest.config.ts index 15429cec81..16c78dee35 100644 --- a/packages/shared-components/vitest.config.ts +++ b/packages/shared-components/vitest.config.ts @@ -92,16 +92,16 @@ export default defineConfig({ providerOptions: { launch: { args: [ - '--disable-gpu', // Disables GPU hardware acceleration. If software renderer is not in place, then the GPU process won't launch. - '--disable-gpu-rasterization', // Disable GPU rasterization, i.e. rasterize on the CPU only. Overrides the kEnableGpuRasterization flag. - '--disable-gpu-compositing', // Prevent the compositor from using its GPU implementation. - '--disable-font-subpixel-positioning', // Force disables font subpixel positioning. This affects the character glyph sharpness, kerning, hinting and layout. - '--disable-software-rasterizer', // Disables the use of a 3D software rasterizer. (Necessary to make --disable-gpu work) - '--ppapi-subpixel-rendering-setting=0', // The enum value of FontRenderParams::subpixel_rendering to be passed to Ppapi processes. - '--force-device-scale-factor=1', // Overrides the device scale factor for the browser UI and the contents. - '--force-color-profile=srgb', // Force all monitors to be treated as though they have the specified color profile. + "--disable-gpu", // Disables GPU hardware acceleration. If software renderer is not in place, then the GPU process won't launch. + "--disable-gpu-rasterization", // Disable GPU rasterization, i.e. rasterize on the CPU only. Overrides the kEnableGpuRasterization flag. + "--disable-gpu-compositing", // Prevent the compositor from using its GPU implementation. + "--disable-font-subpixel-positioning", // Force disables font subpixel positioning. This affects the character glyph sharpness, kerning, hinting and layout. + "--disable-software-rasterizer", // Disables the use of a 3D software rasterizer. (Necessary to make --disable-gpu work) + "--ppapi-subpixel-rendering-setting=0", // The enum value of FontRenderParams::subpixel_rendering to be passed to Ppapi processes. + "--force-device-scale-factor=1", // Overrides the device scale factor for the browser UI and the contents. + "--force-color-profile=srgb", // Force all monitors to be treated as though they have the specified color profile. ], - } + }, }, instances: [{ browser: "chromium" }], },