Skip to content

Commit

Permalink
FIX: Integration Tests (#2166)
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoPlays authored Jan 14, 2025
1 parent c908018 commit 4af98ea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions launcher/src/backend/tests/integration/BesuService.int.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ test("besu installation", async () => {
/Websocket service started/.test(status.stdout) &&
/EngineJsonRpcService \| JSON-RPC service started/.test(status.stdout) &&
/JsonRpcHttpService \| JSON-RPC service started/.test(status.stdout) &&
/MetricsHttpService \| Metrics service started/.test(status.stdout) &&
/MetricsHttpService \| Starting metrics/.test(status.stdout) &&
/P2P RLPx agent started/.test(status.stdout) &&
/Starting peer discovery agent/.test(status.stdout) &&
/Starting sync/.test(status.stdout)
Expand Down Expand Up @@ -105,7 +105,7 @@ test("besu installation", async () => {
expect(status.stdout).toMatch(/Websocket service started/);
expect(status.stdout).toMatch(/EngineJsonRpcService \| JSON-RPC service started/);
expect(status.stdout).toMatch(/JsonRpcHttpService \| JSON-RPC service started/);
expect(status.stdout).toMatch(/MetricsHttpService \| Metrics service started/);
expect(status.stdout).toMatch(/MetricsHttpService \| Starting metrics/);
expect(status.stdout).toMatch(/P2P RLPx agent started/);
expect(status.stdout).toMatch(/Starting peer discovery agent/);
expect(status.stdout).toMatch(/Starting sync/);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ test("lighthouse validator import", async () => {
/Starting validator client/.test(VCstatus.stderr) &&
/Metrics HTTP server started/.test(VCstatus.stderr) &&
/Successfully loaded graffiti file/.test(VCstatus.stderr) &&
/Connected to beacon node/.test(VCstatus.stderr) &&
/Initialized beacon node connections/.test(VCstatus.stderr) &&
/HTTP API started/.test(VCstatus.stderr) &&
/Importing keystores via standard HTTP API, count: 3/.test(VCstatus.stderr) &&
/Imported keystores via standard HTTP API, count: 3/.test(VCstatus.stderr) &&
/Enabled validator/.test(VCstatus.stderr)
) {
condition = true;
Expand Down Expand Up @@ -166,8 +166,8 @@ test("lighthouse validator import", async () => {
expect(VCstatus.stderr).toMatch(/Starting validator client/);
expect(VCstatus.stderr).toMatch(/Metrics HTTP server started/);
expect(VCstatus.stderr).toMatch(/Successfully loaded graffiti file/);
expect(VCstatus.stderr).toMatch(/Connected to beacon node/);
expect(VCstatus.stderr).toMatch(/Initialized beacon node connections/);
expect(VCstatus.stderr).toMatch(/HTTP API started/);
expect(VCstatus.stderr).toMatch(/Importing keystores via standard HTTP API, count: 3/);
expect(VCstatus.stderr).toMatch(/Imported keystores via standard HTTP API, count: 3/);
expect(VCstatus.stderr).toMatch(/Enabled validator/);
});

0 comments on commit 4af98ea

Please sign in to comment.