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:
parent
4361151dcd
commit
a68459e681
@ -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;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user