Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

21 righe
714 B

8 anni fa
8 anni fa
8 anni fa
  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. });