--------- Co-authored-by: DavidMaliglowka <13022280+DavidMaliglowka@users.noreply.github.com> Co-authored-by: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
16 lines
459 B
TypeScript
16 lines
459 B
TypeScript
import * as assert from 'assert';
|
|
|
|
// You can import and use all API from the 'vscode' module
|
|
// as well as import your extension to test it
|
|
import * as vscode from 'vscode';
|
|
// import * as myExtension from '../../extension';
|
|
|
|
suite('Extension Test Suite', () => {
|
|
vscode.window.showInformationMessage('Start all tests.');
|
|
|
|
test('Sample test', () => {
|
|
assert.strictEqual(-1, [1, 2, 3].indexOf(5));
|
|
assert.strictEqual(-1, [1, 2, 3].indexOf(0));
|
|
});
|
|
});
|