We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48fa90a commit e0a68aeCopy full SHA for e0a68ae
test/integration/connection-monitoring-and-pooling/rtt_pinger.test.ts
@@ -159,7 +159,7 @@ describe('class RTTPinger', () => {
159
await client?.close();
160
});
161
162
- it('destroys the connection with force=true', async function () {
+ it('destroys the connection', async function () {
163
await client.connect();
164
const rttPingers = await getRTTPingers(client);
165
@@ -172,7 +172,7 @@ describe('class RTTPinger', () => {
172
173
expect(spies).to.have.lengthOf.at.least(1);
174
for (const spy of spies) {
175
- expect(spy).to.have.been.calledWithExactly({ force: true });
+ expect(spy).to.have.been.calledOnce;
176
}
177
178
0 commit comments