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 c9eb768 commit 68bb2d8Copy full SHA for 68bb2d8
test/integration/collection-management/collection.test.ts
@@ -38,14 +38,6 @@ describe('Collection', function () {
38
expect(collections[1]).to.be.instanceOf(Collection);
39
});
40
41
- it.only('should name check right', async function () {
42
- // Create two collections
43
- await db.createCollection('test.spiderman.');
44
- const collections = await db.collections();
45
- expect(collections[0].collectionName).to.equal('test.spiderman.');
46
- expect(collections[0]).to.be.instanceOf(Collection);
47
- });
48
-
49
it('should correctly retrieve listCollections', function (done) {
50
db.createCollection('test_collection_names', err => {
51
expect(err).to.not.exist;
0 commit comments