You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 line
714 B

8 年之前
8 年之前
8 年之前
  1. //
  2. // Note: This example test is leveraging the Mocha test framework.
  3. // Please refer to their documentation on https://mochajs.org/ for help.
  4. //
  5. // The module 'assert' provides assertion methods from node
  6. import * as assert from 'assert';
  7. // You can import and use all API from the 'vscode' module
  8. // as well as import your extension to test it
  9. // import * as vscode from 'vscode';
  10. // import * as myExtension from '../src/extension';
  11. // Defines a Mocha test suite to group tests of similar kind together
  12. suite('Extension Tests', () => {
  13. // Defines a Mocha unit test
  14. test('Something 1', () => {
  15. assert.equal(-1, [1, 2, 3].indexOf(5));
  16. assert.equal(-1, [1, 2, 3].indexOf(0));
  17. });
  18. });