Skip to content

Commit

Permalink
tests - disable terminal integration tests for web
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Mar 19, 2020
1 parent 9e89ada commit c0eea2a
Show file tree
Hide file tree
Showing 16 changed files with 179 additions and 185 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import * as assert from 'assert';
import { join } from 'path';
import { commands, workspace, window, Uri, Range, Position, ViewColumn } from 'vscode';

suite('commands namespace tests', () => {
suite('vscode API - commands', () => {

test('getCommands', function (done) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import 'mocha';
import * as assert from 'assert';
import * as vscode from 'vscode';

suite('Configuration tests', () => {
suite('vscode API - configuration', () => {

test('configurations, language defaults', function () {
const defaultLanguageSettings = vscode.workspace.getConfiguration().get('[abcLang]');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { debug, workspace, Disposable, commands, window } from 'vscode';
import { disposeAll } from '../utils';
import { basename } from 'path';

suite('Debug', function () {
suite('vscode API - debug', function () {

test('breakpoints', async function () {
assert.equal(debug.breakpoints.length, 0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as assert from 'assert';
import { workspace, window, Position, Range, commands, TextEditor, TextDocument, TextEditorCursorStyle, TextEditorLineNumbersStyle, SnippetString, Selection, Uri } from 'vscode';
import { createRandomFile, deleteFile, closeAllEditors } from '../utils';

suite('editor tests', () => {
suite('vscode API - editors', () => {

teardown(closeAllEditors);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import * as assert from 'assert';
import { env, extensions, ExtensionKind, UIKind, Uri } from 'vscode';

suite('env-namespace', () => {
suite('vscode API - env', () => {

test('env is set', function () {
assert.equal(typeof env.language, 'string');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { join } from 'path';
import * as vscode from 'vscode';
import { createRandomFile, testFs } from '../utils';

suite('languages namespace tests', () => {
suite('vscode API - languages', () => {

const isWindows = process.platform === 'win32';

Expand Down
Loading

0 comments on commit c0eea2a

Please sign in to comment.