mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-06-04 10:03:56 +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 }],
|
|
});
|