Skip to content

Commit 2fcbb5c

Browse files
Add files via upload
1 parent b253f5b commit 2fcbb5c

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import test from 'node:test';
2+
3+
const assert = require('assert');
4+
5+
// You can import and use all API from the 'vscode' module
6+
// as well as import your extension to test it
7+
const vscode = require('vscode');
8+
// const myExtension = require('../extension');
9+
10+
// @ts-ignore
11+
suite('Extension Test Suite', () => {
12+
vscode.window.showInformationMessage('Start all tests.');
13+
14+
test('Sample test', () => {
15+
assert.strictEqual(-1, [1, 2, 3].indexOf(5));
16+
assert.strictEqual(-1, [1, 2, 3].indexOf(0));
17+
});
18+
});

0 commit comments

Comments
 (0)