Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

21 linhas
693 B

há 8 anos
há 8 anos
  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. });