Skip to content

Commit

Permalink
FIX: Adjust Test Timeout for Integration tests (#2153)
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoPlays authored Dec 17, 2024
1 parent 6947998 commit b921133
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { ServiceManager } from "../../ServiceManager.js";
import { TaskManager } from "../../TaskManager.js";
const log = require("electron-log");

jest.setTimeout(1000000);
jest.setTimeout(1800000);

test("lighthouse validator import", async () => {
const testServer = new HetznerServer();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { TaskManager } from "../../TaskManager.js";
import { ValidatorAccountManager } from "../../ValidatorAccountManager.js";
const log = require("electron-log");

jest.setTimeout(1000000);
jest.setTimeout(1800000);

test("lodestar validator import", async () => {
//create server
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { TaskManager } from "../../TaskManager.js";
import { ValidatorAccountManager } from "../../ValidatorAccountManager.js";
const log = require("electron-log");

jest.setTimeout(1000000);
jest.setTimeout(1800000);

test("nimbus validator import", async () => {
//create server
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { TaskManager } from "../../TaskManager.js";
import { ValidatorAccountManager } from "../../ValidatorAccountManager.js";
const log = require("electron-log");

jest.setTimeout(1000000);
jest.setTimeout(1800000);

test("prysm validator import", async () => {
const testServer = new HetznerServer();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { TaskManager } from "../../TaskManager.js";
import { ValidatorAccountManager } from "../../ValidatorAccountManager.js";
const log = require("electron-log");

jest.setTimeout(1000000);
jest.setTimeout(1800000);

test("teku validator import", async () => {
const testServer = new HetznerServer();
Expand Down

0 comments on commit b921133

Please sign in to comment.