Skip to content

Commit 3f79075

Browse files
committed
Increased timeout
1 parent d33372f commit 3f79075

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/server/test/service.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { each, Err, Ok, run } from "effection";
77
// const scriptDoesNotWork = "npm run test:service-main";
88
const nodeScriptWorks = "node --import tsx ./test/service-main.ts";
99

10-
it.skip("test service", async () => {
10+
it("test service", async () => {
1111
let assertionCount = 0;
1212
await run(function* () {
1313
yield* useService("test-service", nodeScriptWorks);
@@ -17,7 +17,7 @@ it.skip("test service", async () => {
1717
});
1818

1919
describe("useService with wellness check", () => {
20-
it.skip("test with short wellness timeout", async () => {
20+
it("test with short wellness timeout", async () => {
2121
let assertionCount = 0;
2222
let errored = false;
2323
await run(function* () {
@@ -46,7 +46,7 @@ describe("useService with wellness check", () => {
4646
assert(errored);
4747
});
4848

49-
it.skip("test with long wellness timeout", async () => {
49+
it("test with long wellness timeout", async () => {
5050
let assertionCount = 0;
5151
await run(function* () {
5252
yield* useService("test-service", nodeScriptWorks, {
@@ -74,7 +74,7 @@ describe("useService with wellness check", () => {
7474
await run(function* () {
7575
yield* useService("test-service", nodeScriptWorks, {
7676
wellnessCheck: {
77-
timeout: 150,
77+
timeout: 500,
7878
frequency: 100,
7979
*operation(stdio) {
8080
console.log("wellness check operation started");

0 commit comments

Comments
 (0)