Skip to content

Commit

Permalink
Remove redundant tests
Browse files Browse the repository at this point in the history
  • Loading branch information
brianc committed Aug 1, 2024
1 parent a9248f6 commit 4ed2bcc
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions packages/pg-native/test/many-connections.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var bytes = require('crypto').pseudoRandomBytes
describe('many connections', function () {
describe('async', function () {
var test = function (count, times) {
it('connecting ' + count + ' clients ' + times, function (done) {
it(`connecting ${count} clients ${times} times`, function (done) {
this.timeout(200000)

var connectClient = function (n, cb) {
Expand Down Expand Up @@ -38,20 +38,9 @@ describe('many connections', function () {
}

test(1, 1)
test(1, 1)
test(1, 1)
test(5, 5)
test(5, 5)
test(5, 5)
test(5, 5)
test(10, 10)
test(10, 10)
test(10, 10)
test(20, 20)
test(20, 20)
test(20, 20)
test(30, 10)
test(30, 10)
test(30, 10)
})
})

0 comments on commit 4ed2bcc

Please sign in to comment.