Skip to content

Commit

Permalink
Remove more tests checking for node-pty throwing on terminal create
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Mäder <t.s.maeder@gmail.com>
  • Loading branch information
tsmaeder committed Dec 31, 2024
1 parent 9297b48 commit 9f326b5
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions packages/task/src/node/task-server.slow-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ import * as https from 'https';
import { isWindows, isOSX } from '@theia/core/lib/common/os';
import { FileUri } from '@theia/core/lib/node';
import { terminalsPath } from '@theia/terminal/lib/common/terminal-protocol';
import { expectThrowsAsync } from '@theia/core/lib/common/test/expect';
import { TestWebSocketChannelSetup } from '@theia/core/lib/node/messaging/test/test-web-socket-channel';
import { expect } from 'chai';
import URI from '@theia/core/lib/common/uri';
Expand Down Expand Up @@ -251,11 +250,6 @@ describe('Task server / back-end', function (): void {
}
});

it('task using raw process can handle command that does not exist', async function (): Promise<void> {
const p = taskServer.run(createProcessTaskConfig2('process', bogusCommand, []), wsRoot);
await expectThrowsAsync(p, 'ENOENT');
});

it('getTasks(ctx) returns tasks according to created context', async function (): Promise<void> {
const context1 = 'aContext';
const context2 = 'anotherContext';
Expand Down

0 comments on commit 9f326b5

Please sign in to comment.