Skip to content

Commit 31f7ead

Browse files
committed
f
1 parent 04efc05 commit 31f7ead

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/start.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ describe('test/start.test.ts', () => {
151151

152152
it('should start', async () => {
153153
app = coffee.fork(eggBin, [ 'start', '--workers=2', fixturePath ]) as Coffee;
154-
app.debug();
154+
// app.debug();
155155
app.expect('code', 0);
156156

157157
await scheduler.wait(waitTime);
@@ -171,7 +171,7 @@ describe('test/start.test.ts', () => {
171171
app = coffee.fork(eggBin, [
172172
'start', '--workers=1', path.join(__dirname, 'fixtures/trace-warnings'),
173173
]) as Coffee;
174-
app.debug();
174+
// app.debug();
175175
app.expect('code', 0);
176176

177177
await scheduler.wait(waitTime);
@@ -188,7 +188,7 @@ describe('test/start.test.ts', () => {
188188
PATH: process.env.PATH,
189189
},
190190
}) as Coffee;
191-
app.debug();
191+
// app.debug();
192192
app.expect('code', 0);
193193

194194
await scheduler.wait(waitTime);
@@ -650,7 +650,7 @@ describe('test/start.test.ts', () => {
650650

651651
it('should start', async () => {
652652
app = coffee.fork(eggBin, [ 'start', '--workers=1', fixturePath ]) as Coffee;
653-
app.debug();
653+
// app.debug();
654654
app.expect('code', 0);
655655

656656
await scheduler.wait(waitTime);

0 commit comments

Comments
 (0)