Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
benzekrimaha committed Oct 21, 2024
1 parent e7bfd97 commit 864e646
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/functional/clustering/ClusterRPC.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,10 @@ function startTestServer(done) {
}

function stopTestServer(done) {
testServer.kill('SIGTERM');
testServer.kill('SIGKILL');
console.log('Waiting for test server to close...');
testServer.on('close', done);
console.log('Test server closed');
}

/**
Expand Down Expand Up @@ -93,7 +95,7 @@ function runTest(testUrl, cb) {
.on('error', err => cb(err));
}

describe('ClusterRPC', () => {
describe.only('ClusterRPC', () => {
beforeAll(done => startTestServer(done));
afterAll(done => stopTestServer(done));

Expand Down

0 comments on commit 864e646

Please sign in to comment.