@mastra/pg 0.3.4 → 0.4.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -116,11 +116,11 @@ describe('PostgreSQL Index Performance', () => {
116
116
  vectorDB = new PGPerformanceVector(connectionString);
117
117
  });
118
118
  beforeEach(async () => {
119
- await vectorDB.deleteIndex(testIndexName);
119
+ await vectorDB.deleteIndex({ indexName: testIndexName });
120
120
  });
121
121
 
122
122
  afterEach(async () => {
123
- await vectorDB.deleteIndex(testIndexName);
123
+ await vectorDB.deleteIndex({ indexName: testIndexName });
124
124
  });
125
125
 
126
126
  afterAll(async () => {