Skip to content
This repository was archived by the owner on Mar 3, 2026. It is now read-only.

Commit faf0503

Browse files
committed
🔧 test: enhance error handling in execDdev assertions
1 parent 1fa5036 commit faf0503

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/ddev-utils.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ suite('DdevUtils Test Suite', () => {
159159

160160
assert.throws(() => {
161161
DdevUtils.execDdev(['ls'], '/test/workspace');
162-
}, (err: { status: number; stderr: string }) => {
162+
}, (err: { status: number; stderr: string; stdout?: string; command?: string; workspacePath?: string; name?: string }) => {
163163
return err.status === 1 && err.stderr === 'error';
164164
});
165165
});

0 commit comments

Comments
 (0)