File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -246,8 +246,6 @@ describe("flow", () => {
246
246
const resolveReduction = async ( ) => {
247
247
let reductions = flow . state . reductionQueue ;
248
248
249
- console . log ( "Length:" , reductions . length ) ;
250
-
251
249
if ( reductions . length === 1 && flow . tasksInProgress === 0 ) {
252
250
resolve ( reductions [ 0 ] ) ;
253
251
}
@@ -276,7 +274,7 @@ describe("flow", () => {
276
274
const [ first , second ] = flow . state . pairings [ index ] ;
277
275
278
276
if ( first !== undefined && second !== undefined ) {
279
- console . log ( `Found pairing ${ index } ` ) ;
277
+ log . trace ( `Found pairing ${ index } ` ) ;
280
278
281
279
await flow . pushTask (
282
280
mulTask ,
@@ -314,7 +312,7 @@ describe("flow", () => {
314
312
} ) ;
315
313
} ) ;
316
314
317
- console . log ( computedResult ) ;
315
+ log . trace ( computedResult ) ;
318
316
319
317
expect ( computedResult ) . toStrictEqual ( result ) ;
320
318
} ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { sleep } from "@proto-kit/common";
2
2
3
3
import { startServer } from "../src" ;
4
4
5
- describe ( "Start" , ( ) => {
5
+ describe . skip ( "Start" , ( ) => {
6
6
it ( "a" , async ( ) => {
7
7
await startServer ( ) ;
8
8
await sleep ( 10000000 ) ;
You can’t perform that action at this time.
0 commit comments