Skip to content

Commit adb65b8

Browse files
committed
Remove .only
1 parent 3e4ea08 commit adb65b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

__tests__/collection.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ describe("Collections", () => {
6060
expect(insertResults.status.insertedIds).length.to.have.length(2);
6161
await astra.deleteCollection({ name: collectionName });
6262
});
63-
test.skip("should update one", async () => {
63+
test("should update one", async () => {
6464
const collectionName = `test${epoch}`;
6565
await astra.createCollection({ name: collectionName });
6666
const insertResults = await astra.collection(collectionName).insertOne({
@@ -82,7 +82,7 @@ describe("Collections", () => {
8282
console.log(updateResults);
8383
await astra.deleteCollection({ name: collectionName });
8484
});
85-
test.only('should delete one', async () => {
85+
test('should delete one', async () => {
8686
const collectionName = `test${epoch}`;
8787
await astra.createCollection({ name: collectionName });
8888
const insertResults = await astra.collection(collectionName).insertOne({

0 commit comments

Comments
 (0)