Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
benzekrimaha committed Oct 21, 2024
1 parent bfd9cd3 commit a6a8456
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
2 changes: 0 additions & 2 deletions tests/functional/clustering/ClusterRPC.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,7 @@ function startTestServer(done) {

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

/**
Expand Down
3 changes: 0 additions & 3 deletions tests/unit/storage/data/external/GcpService.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ describe('GcpService request behavior', () => {
jest.setTimeout(120000);
let httpServer;
let client;
console.log('here');

beforeAll(done => {
client = new GCP({
Expand Down Expand Up @@ -179,7 +178,6 @@ describe('GcpService dnsStyle tests', () => {
});
httpServer =
http.createServer(handler(false)).listen(httpPort);
console.log*('httpServer', httpServer);
httpServer.on('listening', done);
httpServer.on('error', err => {
process.stdout.write(`https server: ${err.stack}\n`);
Expand All @@ -193,7 +191,6 @@ describe('GcpService dnsStyle tests', () => {

operations.forEach(test => it(`GCP::${test.op}`, done => {
client[test.op](test.params, err => {
console.log(err);
assert.ifError(err);
done();
});
Expand Down

0 comments on commit a6a8456

Please sign in to comment.