Re-enable most tests

This commit is contained in:
Daniel Imms 2021-02-12 14:10:21 -08:00
parent 68f1497536
commit a5994556a8

View file

@ -122,7 +122,7 @@ import { assertNoRpc } from '../utils';
});
});
test.skip('processId immediately after createTerminal should fetch the pid', async () => {
test('processId immediately after createTerminal should fetch the pid', async () => {
const terminal = window.createTerminal();
const result = await new Promise<Terminal>(r => {
disposables.push(window.onDidOpenTerminal(t => {
@ -144,7 +144,7 @@ import { assertNoRpc } from '../utils';
});
});
test.skip('name in constructor should set terminal.name', async () => {
test('name in constructor should set terminal.name', async () => {
const terminal = window.createTerminal('a');
const result = await new Promise<Terminal>(r => {
disposables.push(window.onDidOpenTerminal(t => {
@ -164,7 +164,7 @@ import { assertNoRpc } from '../utils';
});
});
test.skip('creationOptions should be set and readonly for TerminalOptions terminals', async () => {
test('creationOptions should be set and readonly for TerminalOptions terminals', async () => {
const options = {
name: 'foo',
hideFromUser: true
@ -190,7 +190,7 @@ import { assertNoRpc } from '../utils';
throws(() => terminalOptions.name = 'bad', 'creationOptions should be readonly at runtime');
});
test.skip('onDidOpenTerminal should fire when a terminal is created', async () => {
test('onDidOpenTerminal should fire when a terminal is created', async () => {
const terminal = window.createTerminal('b');
const result = await new Promise<Terminal>(r => {
disposables.push(window.onDidOpenTerminal(t => {
@ -210,7 +210,7 @@ import { assertNoRpc } from '../utils';
});
});
test.skip('exitStatus.code should be set to undefined after a terminal is disposed', async () => {
test('exitStatus.code should be set to undefined after a terminal is disposed', async () => {
const terminal = window.createTerminal();
const result = await new Promise<Terminal>(r => {
disposables.push(window.onDidOpenTerminal(t => {
@ -301,7 +301,7 @@ import { assertNoRpc } from '../utils';
// terminal1.show();
// });
suite.skip('hideFromUser', () => {
suite('hideFromUser', () => {
test('should be available to terminals API', async () => {
const terminal = window.createTerminal({ name: 'bg', hideFromUser: true });
const result = await new Promise<Terminal>(r => {