Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update node-pty to 1.1.0-beta27 #14677

Merged
merged 14 commits into from
Jan 6, 2025
Prev Previous commit
Next Next commit
Remove more tests checking for node-pty throwing on terminal create
Signed-off-by: Thomas Mäder <t.s.maeder@gmail.com>
tsmaeder committed Dec 31, 2024
commit 9f326b5af86c64779f458150fed9975f318cba20
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
@@ -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';
@@ -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';