PokéScript Language support for Visual Studio Code.

extension.test.ts 721B

12345678910111213141516171819202122
  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 '../extension';
  11. // Defines a Mocha test suite to group tests of similar kind together
  12. suite("Extension Tests", function () {
  13. // Defines a Mocha unit test
  14. test("Something 1", function() {
  15. assert.equal(-1, [1, 2, 3].indexOf(5));
  16. assert.equal(-1, [1, 2, 3].indexOf(0));
  17. });
  18. });