[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
12

Configure Feed

Select the types of activity you want to include in your feed.

chore: cleanup messages

userquin (Nov 8, 2025, 9:12 PM +0100) 8d4329c8 02917532

+9 -9
+9 -9
packages/vitest/src/node/config/resolveConfig.ts
··· 727 727 if (isPreview && resolved.browser.screenshotFailures === true) { 728 728 console.warn(c.yellow( 729 729 [ 730 - `Browser provider "preview" doesn't support screenshots, `, 731 - `so "browser.screenshotFailures" option is forcefully disabled. `, 732 - `Set "browser.screenshotFailures" to false or remove it from the config to suppress this warning.`, 730 + 'Browser provider "preview" doesn\'t support screenshots, ', 731 + 'so "browser.screenshotFailures" option is forcefully disabled. ', 732 + 'Set "browser.screenshotFailures" to false or remove it from the config to suppress this warning.', 733 733 ].join(''), 734 734 )) 735 735 resolved.browser.screenshotFailures = false ··· 741 741 if (stdProvider === 'stackblitz') { 742 742 console.warn(c.yellow( 743 743 [ 744 - `Browser provider "preview" doesn't support multiple instances when running on stackblitz, `, 745 - `so "browser.instances" option is forcefully to use the first instance. `, 746 - `You can use "import { provider } from 'std-env'" and check if it is "stackblitz" to configure 747 - 'the browser.instances correctly to supress this warning.`, 744 + 'Browser provider "preview" doesn\'t support multiple instances when running on stackblitz, ', 745 + 'so "browser.instances" option is forcefully to use the first instance. ', 746 + 'You can use "import { provider } from \'std-env\'" and check if it is "stackblitz" to configure ', 747 + 'the browser.instances correctly to suppress this warning.', 748 748 ].join(''), 749 749 )) 750 750 resolved.browser.instances = [resolved.browser.instances[0]] 751 751 } 752 752 else { 753 753 console.warn(c.yellow([ 754 - `'Vitest is running multiple browser instances with the "preview" provider. `, 755 - `Tests may not start until you focus each browser window.'`, 754 + 'Vitest is running multiple browser instances with the "preview" provider. ', 755 + 'Tests may not start until you focus each browser window.', 756 756 ].join(''))) 757 757 } 758 758 }