remove experiments

This commit is contained in:
Charlie Kolb 2025-08-04 13:30:05 +02:00
parent 8ba6878c23
commit 145365877e
No known key found for this signature in database
2 changed files with 4 additions and 5 deletions

View File

@ -13,9 +13,7 @@ beforeAll(async () => {
});
beforeEach(async () => {
try {
await testDb.truncate(['DataStoreEntity']);
} catch {}
await testDb.truncate(['DataStoreEntity', 'DataStoreColumnEntity']);
});
afterAll(async () => {
@ -52,7 +50,7 @@ describe('dataStore', () => {
});
afterEach(async () => {
// this kinda sucks
// Clean up any created user data stores
await dataStoreService.deleteDataStoreAll();
});

View File

@ -42,7 +42,8 @@ type EndpointGroup =
| 'evaluation'
| 'ai'
| 'folder'
| 'insights';
| 'insights'
| 'data-store';
type ModuleName = 'insights' | 'external-secrets' | 'data-store';