mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-18 15:02:09 +00:00
16 lines
444 B
JavaScript
16 lines
444 B
JavaScript
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.equal(-1, [1, 2, 3].indexOf(5));
|
|
assert.equal(-1, [1, 2, 3].indexOf(0));
|
|
});
|
|
});
|