···11-/* global suite, test */
22-33-//
44-// Note: This example test is leveraging the Mocha test framework.
55-// Please refer to their documentation on https://mochajs.org/ for help.
66-//
77-88-// The module 'assert' provides assertion methods from node
99-const assert = require('assert')
1010-1111-// You can import and use all API from the 'vscode' module
1212-// as well as import your extension to test it
1313-// const vscode = require('vscode');
1414-// const myExtension = require('../extension');
1515-1616-// Defines a Mocha test suite to group tests of similar kind together
1717-suite('Extension Tests', function() {
1818- // Defines a Mocha unit test
1919- test('Something 1', function() {
2020- assert.equal(-1, [1, 2, 3].indexOf(5))
2121- assert.equal(-1, [1, 2, 3].indexOf(0))
2222- })
2323-})