💄 Emmet tests

This commit is contained in:
Raymond Zhao
2021-03-30 11:27:51 -07:00
parent 9503e7dce7
commit 9b091c7d22
15 changed files with 173 additions and 177 deletions

View File

@@ -48,7 +48,6 @@ export function deleteFile(file: vscode.Uri): Thenable<boolean> {
export function closeAllEditors(): Thenable<any> {
return vscode.commands.executeCommand('workbench.action.closeAllEditors');
}
export function withRandomFileEditor(initialContents: string, fileExtension: string = 'txt', run: (editor: vscode.TextEditor, doc: vscode.TextDocument) => Thenable<void>): Thenable<boolean> {
@@ -67,4 +66,4 @@ export function withRandomFileEditor(initialContents: string, fileExtension: str
});
});
});
}
}