@@ -9,18 +9,6 @@ import { createApp, timeout, installDiagnosticsHandler, installAppAfterHandler,
9
9
10
10
export function setup ( ensureStableCode : ( ) => string | undefined , logger : Logger ) {
11
11
describe ( 'Data Loss (insiders -> insiders)' , function ( ) {
12
-
13
- // There are cases where `exitApplication` does not actually
14
- // stop the application and our attempt then to `kill` the
15
- // process tree results in data loss / state loss. All these
16
- // tests here rely on state getting persisted properly, so
17
- // until we have figured out the root cause, we retry these
18
- // tests.
19
- // See: https://github.com/microsoft/vscode/issues/157979
20
- if ( process . platform === 'darwin' ) {
21
- this . retries ( 2 ) ;
22
- }
23
-
24
12
let app : Application | undefined = undefined ;
25
13
26
14
// Shared before/after handling
@@ -142,18 +130,6 @@ export function setup(ensureStableCode: () => string | undefined, logger: Logger
142
130
} ) ;
143
131
144
132
describe ( 'Data Loss (stable -> insiders)' , function ( ) {
145
-
146
- // There are cases where `exitApplication` does not actually
147
- // stop the application and our attempt then to `kill` the
148
- // process tree results in data loss / state loss. All these
149
- // tests here rely on state getting persisted properly, so
150
- // until we have figured out the root cause, we retry these
151
- // tests.
152
- // See: https://github.com/microsoft/vscode/issues/157979
153
- if ( process . platform === 'darwin' ) {
154
- this . retries ( 2 ) ;
155
- }
156
-
157
133
let insidersApp : Application | undefined = undefined ;
158
134
let stableApp : Application | undefined = undefined ;
159
135
0 commit comments