Skip to content

Commit f074db0

Browse files
committed
adding wait flag
1 parent 958303f commit f074db0

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

packages/b2c-cli/src/commands/ods/list.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const COLUMNS: Record<string, ColumnDef<SandboxModel>> = {
4141
},
4242
eol: {
4343
header: 'EOL',
44-
get: (s) => (s.eol ? new Date(s.eol).toISOString() : '-'),
44+
get: (s) => (s.eol ? new Date(s.eol).toISOString().slice(0, 10) : '-'),
4545
},
4646
id: {
4747
header: 'ID',

packages/b2c-cli/test/commands/_test/index.test.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ import {runCommand} from '@oclif/test';
77
import {expect} from 'chai';
88

99
describe('_test', () => {
10-
it('declares the test command suite', () => {
11-
expect(runCommand).to.be.a('function');
10+
// Skip in automated tests - this is a debug command that intentionally produces log output
11+
// Run manually with: ./cli _test
12+
it.skip('runs the smoke test command without errors', async () => {
13+
const {error} = await runCommand('_test');
14+
expect(error).to.be.undefined;
1215
});
1316
});

0 commit comments

Comments
 (0)