Update test sample

This commit is contained in:
Pine Wu
2019-09-25 12:20:23 -07:00
parent 708bc30908
commit 199c5d8eeb

View File

@ -1,5 +1,4 @@
import * as assert from 'assert';
import { before } from 'mocha';
// You can import and use all API from the 'vscode' module
// as well as import your extension to test it
@ -7,9 +6,7 @@ import * as vscode from 'vscode';
// import * as myExtension from '../extension';
suite('Extension Test Suite', () => {
before(() => {
vscode.window.showInformationMessage('Start all tests.');
});
vscode.window.showInformationMessage('Start all tests.');
test('Sample test', () => {
assert.equal([1, 2, 3].indexOf(5), -1);