Organize imports in ext tests

This commit is contained in:
Matt Bierner
2021-08-11 16:54:43 -07:00
parent 4b80b4cd36
commit ab8e743520
19 changed files with 31 additions and 31 deletions

View File

@@ -3,8 +3,8 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import 'mocha';
import * as assert from 'assert';
import 'mocha';
import * as vscode from 'vscode';
suite('vscode server cli', () => {
@@ -14,7 +14,7 @@ suite('vscode server cli', () => {
const extension = process.env.TESTRESOLVER_INSTALL_BUILTIN_EXTENSION;
if (!process.env.BUILD_SOURCEVERSION // Skip it when running out of sources
|| !process.env.REMOTE_VSCODE // Skip it when not a remote integration test
|| !extension // Skip it when extension is not provided to server
|| !extension // Skip it when extension is not provided to server
) {
this.skip();
}