mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-12-06 09:13:03 +03:00
10 lines
195 B
TypeScript
10 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 }],
|
||
|
|
});
|