feat: Added operating systems parameter to resources #98
Annotations
4 errors
|
build-and-test
Process completed with exit code 1.
|
|
src/pty/sequential-pty.test.ts > SequentialPty tests > Reports back the correct exit code and status:
src/pty/sequential-pty.test.ts#L34
AssertionError: expected { Object (status, exitCode, ...) } to match object { Object (status, exitCode, ...) }
- Expected
+ Received
{
- "data": "zsh:1: command not found: which sjkdhsakjdhjkash",
+ "data": "bash: which sjkdhsakjdhjkash: command not found",
"exitCode": 127,
"status": "error",
}
❯ src/pty/sequential-pty.test.ts:34:26
|
|
src/pty/index.test.ts > General tests for PTYs > Currently pty not available for apply:
src/pty/index.test.ts#L110
AssertionError: expected SequentialPty{} to be undefined
❯ TestResource.create src/pty/index.test.ts:110:22
❯ ResourceController.applyCreate src/resource/resource-controller.ts:336:25
❯ ResourceController.apply src/resource/resource-controller.ts:253:21
❯ src/plugin/plugin.ts:238:73
❯ Plugin.apply src/plugin/plugin.ts:238:27
❯ src/pty/index.test.ts:117:18
|
|
src/pty/background-pty.test.ts > BackgroundPty tests > Reports back the correct exit code and status:
src/pty/background-pty.test.ts#L48
AssertionError: expected { status: 'error', exitCode: 1, …(1) } to match object { status: 'error', exitCode: 1, …(1) }
- Expected
+ Received
{
- "data": "sjkdhsakjdhjkash not found",
+ "data": "",
"exitCode": 1,
"status": "error",
}
❯ src/pty/background-pty.test.ts:48:26
|