Skip to content

Commit 8297d3a

Browse files
ts refactor, renmae
1 parent c5625b3 commit 8297d3a

2 files changed

Lines changed: 11 additions & 33 deletions

File tree

test/integration/crud/promise_stats.test.js

Lines changed: 0 additions & 33 deletions
This file was deleted.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { expect } from 'chai';
2+
3+
describe('stats', function () {
4+
it('correctly executes stats()', async function () {
5+
const client = this.configuration.newClient();
6+
await client.connect();
7+
const stats = await client.db('foo').stats();
8+
expect(stats).not.to.be.null;
9+
await client.close();
10+
});
11+
});

0 commit comments

Comments
 (0)