1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-05-29 15:03:57 +00:00
vaultwarden/playwright/tests/setups/db-test.ts
2025-01-09 17:01:28 +01:00

9 lines
195 B
TypeScript

import { test as base } from '@playwright/test';
export type TestOptions = {
serviceName: string;
};
export const test = base.extend<TestOptions>({
serviceName: ['', { option: true }],
});