Skip to content

Commit 7225d02

Browse files
author
Benjamin Pasero
committed
fix tests
1 parent be6a689 commit 7225d02

3 files changed

Lines changed: 1 addition & 5 deletions

File tree

src/vs/platform/dialogs/common/dialogs.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ export interface IOpenDialogOptions {
141141
availableFileSystems?: readonly string[];
142142
}
143143

144-
145144
export const IDialogService = createDecorator<IDialogService>('dialogService');
146145

147146
export interface IDialogOptions {

src/vs/platform/files/test/node/diskFileService.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ suite('Disk File Service', function () {
134134
// we see random test failures when accessing the native file system. To
135135
// diagnose further, we retry node.js file access tests up to 3 times to
136136
// rule out any random disk issue.
137-
// this.retries(3);
137+
this.retries(3);
138138

139139
setup(async () => {
140140
const logService = new NullLogService();

src/vs/workbench/services/textfile/common/textfiles.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ export interface ITextFileService extends IDisposable {
139139
confirmSave(resources?: URI[]): Promise<ConfirmResult>;
140140
}
141141

142-
143142
export class FileOperationWillRunEvent implements IWaitUntil {
144143

145144
constructor(
@@ -157,7 +156,6 @@ export class FileOperationWillRunEvent implements IWaitUntil {
157156
}
158157
}
159158

160-
161159
export class FileOperationDidRunEvent {
162160

163161
constructor(
@@ -167,7 +165,6 @@ export class FileOperationDidRunEvent {
167165
) { }
168166
}
169167

170-
171168
export interface IReadTextFileOptions extends IReadFileOptions {
172169

173170
/**

0 commit comments

Comments
 (0)