@@ -7,7 +7,6 @@ import { dirname, isAbsolute, join, relative, resolve, toNamespacedPath } from '
7
7
import type { TransformResult , ViteDevServer , InlineConfig as ViteInlineConfig } from 'vite'
8
8
import { ViteNodeRunner } from 'vite-node/client'
9
9
import { ViteNodeServer } from 'vite-node/server'
10
- import c from 'picocolors'
11
10
import { createBrowserServer } from '../integrations/browser/server'
12
11
import type { ProvidedContext , ResolvedConfig , UserConfig , UserWorkspaceConfig , Vitest } from '../types'
13
12
import type { Typechecker } from '../typecheck/typechecker'
@@ -21,7 +20,6 @@ import { WorkspaceVitestPlugin } from './plugins/workspace'
21
20
import { createViteServer } from './vite'
22
21
import type { GlobalSetupFile } from './globalSetup'
23
22
import { loadGlobalSetupFiles } from './globalSetup'
24
- import { divider } from './reporters/renderers/utils'
25
23
26
24
interface InitializeProjectOptions extends UserWorkspaceConfig {
27
25
workspaceConfigPath : string
@@ -139,36 +137,21 @@ export class WorkspaceProject {
139
137
140
138
this . _globalSetups = await loadGlobalSetupFiles ( this . runner , this . config . globalSetup )
141
139
142
- try {
143
- for ( const globalSetupFile of this . _globalSetups ) {
144
- const teardown = await globalSetupFile . setup ?.( { provide : this . provide , config : this . config } )
145
- if ( teardown == null || ! ! globalSetupFile . teardown )
146
- continue
147
- if ( typeof teardown !== 'function' )
148
- throw new Error ( `invalid return value in globalSetup file ${ globalSetupFile . file } . Must return a function` )
149
- globalSetupFile . teardown = teardown
150
- }
151
- }
152
- catch ( e ) {
153
- this . logger . error ( `\n${ c . red ( divider ( c . bold ( c . inverse ( ' Error during global setup ' ) ) ) ) } ` )
154
- this . logger . printError ( e )
155
- process . exit ( 1 )
140
+ for ( const globalSetupFile of this . _globalSetups ) {
141
+ const teardown = await globalSetupFile . setup ?.( { provide : this . provide , config : this . config } )
142
+ if ( teardown == null || ! ! globalSetupFile . teardown )
143
+ continue
144
+ if ( typeof teardown !== 'function' )
145
+ throw new Error ( `invalid return value in globalSetup file ${ globalSetupFile . file } . Must return a function` )
146
+ globalSetupFile . teardown = teardown
156
147
}
157
148
}
158
149
159
150
async teardownGlobalSetup ( ) {
160
151
if ( ! this . _globalSetups )
161
152
return
162
- for ( const globalSetupFile of [ ...this . _globalSetups ] . reverse ( ) ) {
163
- try {
164
- await globalSetupFile . teardown ?.( )
165
- }
166
- catch ( error ) {
167
- this . logger . error ( `error during global teardown of ${ globalSetupFile . file } ` , error )
168
- this . logger . printError ( error )
169
- process . exitCode = 1
170
- }
171
- }
153
+ for ( const globalSetupFile of [ ...this . _globalSetups ] . reverse ( ) )
154
+ await globalSetupFile . teardown ?.( )
172
155
}
173
156
174
157
get logger ( ) {
0 commit comments