fix: use "set up" (verb) instead of "setup" (noun) in comments (#17632)

"Setup" is a noun/adjective, while "set up" is the verb form.
pull/17644/head
Artyom Alekseevich 3 months ago committed by GitHub
parent 6e5f2b157a
commit 989492f057
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -181,7 +181,7 @@ export default defineConfig({
/* ... */
],
test: {
// If you are testing components client-side, you need to setup a DOM environment.
// If you are testing components client-side, you need to set up a DOM environment.
// If not all your files should have this environment, you can use a
// `// @vitest-environment jsdom` comment at the top of the test files instead.
environment: 'jsdom'

@ -21,7 +21,7 @@ import { disable_async_mode_flag, enable_async_mode_flag } from '../../src/inter
/**
* @param runes runes mode
* @param fn A function that returns a function because we first need to setup all the signals
* @param fn A function that returns a function because we first need to set up all the signals
* and then execute the test in order to simulate a real component
*/
function run_test(runes: boolean, fn: (runes: boolean) => () => void) {

Loading…
Cancel
Save