Skip to content

Commit

Permalink
fix: skip flaky test (#1495)
Browse files Browse the repository at this point in the history
Fixes #1334
  • Loading branch information
punya authored May 5, 2023
1 parent 58e7821 commit bb03060
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test-mysql-pool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ if (semver.satisfies(process.version, '>=4')) {
Hapi = require('./plugins/fixtures/hapi16');
});

it('should work with connection pool access', done => {
// flaky - see https://github.com/googleapis/cloud-trace-nodejs/issues/1334
it.skip('should work with connection pool access', done => {
const server = new Hapi.Server();
server.connection({port: common.serverPort});
server.register(
Expand Down

0 comments on commit bb03060

Please sign in to comment.