mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-05-29 15:03:57 +00:00
9 lines
195 B
TypeScript
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 }],
|
|
});
|