Skip to content

Commit

Permalink
chore: initial extension setup
Browse files Browse the repository at this point in the history
  • Loading branch information
harmeetsingh11 committed Jan 22, 2024
1 parent 68b263b commit f357fef
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions test/extension.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
const assert = require('assert');

// You can import and use all API from the 'vscode' module
// as well as import your extension to test it
const vscode = require('vscode');
// const myExtension = require('../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));
});
});

0 comments on commit f357fef

Please sign in to comment.