This commit is contained in:
andrepimenta
2025-06-16 17:29:04 +01:00
commit 2c299a837d
18 changed files with 7416 additions and 0 deletions

3372
src/extension.ts Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,15 @@
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));
});
});