mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 01:58:53 +01:00
tsfmt - extensions/vscode-api-tests
This commit is contained in:
@@ -6,9 +6,11 @@
|
||||
'use strict';
|
||||
|
||||
import * as assert from 'assert';
|
||||
import {join} from 'path';
|
||||
import {languages, workspace, commands, Uri, Diagnostic, Range, Command, Disposable, CancellationToken,
|
||||
CompletionList, CompletionItem, CompletionItemKind, TextDocument, Position} from 'vscode';
|
||||
import { join } from 'path';
|
||||
import {
|
||||
languages, workspace, commands, Uri, Diagnostic, Range, Command, Disposable, CancellationToken,
|
||||
CompletionList, CompletionItem, CompletionItemKind, TextDocument, Position
|
||||
} from 'vscode';
|
||||
|
||||
suite('languages namespace tests', () => {
|
||||
|
||||
@@ -76,7 +78,7 @@ suite('languages namespace tests', () => {
|
||||
let proposal = new CompletionItem('foo');
|
||||
proposal.kind = CompletionItemKind.Property;
|
||||
ran = true;
|
||||
return [ proposal ];
|
||||
return [proposal];
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user