1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-24 17:51:14 +02:00

Remove unneeded config

This commit is contained in:
Gastón Fournier 2025-09-24 17:13:31 +02:00
parent 4361151dcd
commit a68459e681
No known key found for this signature in database
GPG Key ID: AF45428626E17A8E

View File

@ -1,14 +1,11 @@
import dbInit, { type ITestDb } from '../helpers/database-init.js'; import dbInit, { type ITestDb } from '../helpers/database-init.js';
import getLogger from '../../fixtures/no-logger.js';
import type { IUnleashStores } from '../../../lib/types/index.js'; import type { IUnleashStores } from '../../../lib/types/index.js';
import { beforeAll, test, expect } from 'vitest'; import { beforeAll, test, expect } from 'vitest';
let stores: IUnleashStores; let stores: IUnleashStores;
let db: ITestDb; let db: ITestDb;
beforeAll(async () => { beforeAll(async () => {
db = await dbInit('user_store_serial', getLogger, { db = await dbInit();
experimental: { flags: {} },
});
stores = db.stores; stores = db.stores;
}); });