Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/cloud-hypervisor/config.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ describe('Cloud Hypervisor configuration (foundation only)', () => {
.toContain('config.cloudHypervisor.unsupported is not supported');
});

it('rejects "cloud-hypervisor" as a --container-runtime value (not yet an available runtime)', () => {
it('accepts "cloud-hypervisor" as a container runtime', () => {
expect(validateAwfFileConfig({
container: { containerRuntime: 'cloud-hypervisor' },
}).some((error) => error.includes('container.containerRuntime'))).toBe(true);
})).toEqual([]);
});
});
2 changes: 1 addition & 1 deletion src/enclave/preflight.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ describe('validateEnclavesConfig', () => {
enableApiProxy: true,
copilotGithubToken: 'token',
})).join('\n');
expect(errors).toMatch(/agent.maxOutputBytes must be at most 8192/);
expect(errors).toMatch(/maxOutputBytes must be at most 8192/);
expect(errors).toMatch(/agent.maxTaskBytes must be at most 65536/);
});

Expand Down
Loading