Skip to content

Commit 7de7a5b

Browse files
committed
Disabled blocking test
1 parent 6e73cf8 commit 7de7a5b

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

packages/sequencer/test/worker/Flow.test.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,6 @@ describe("flow", () => {
246246
const resolveReduction = async () => {
247247
let reductions = flow.state.reductionQueue;
248248

249-
console.log("Length:", reductions.length);
250-
251249
if (reductions.length === 1 && flow.tasksInProgress === 0) {
252250
resolve(reductions[0]);
253251
}
@@ -276,7 +274,7 @@ describe("flow", () => {
276274
const [first, second] = flow.state.pairings[index];
277275

278276
if (first !== undefined && second !== undefined) {
279-
console.log(`Found pairing ${index}`);
277+
log.trace(`Found pairing ${index}`);
280278

281279
await flow.pushTask(
282280
mulTask,
@@ -314,7 +312,7 @@ describe("flow", () => {
314312
});
315313
});
316314

317-
console.log(computedResult);
315+
log.trace(computedResult);
318316

319317
expect(computedResult).toStrictEqual(result);
320318
},

packages/stack/test/start.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { sleep } from "@proto-kit/common";
22

33
import { startServer } from "../src";
44

5-
describe("Start", () => {
5+
describe.skip("Start", () => {
66
it("a", async () => {
77
await startServer();
88
await sleep(10000000);

0 commit comments

Comments
 (0)