Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2025-01-09 12:05:42 +01:00
10 Zeilen
195 B
TypeScript
10 Zeilen
195 B
TypeScript
|
import { test as base } from '@playwright/test';
|
||
|
|
||
|
export type TestOptions = {
|
||
|
serviceName: string;
|
||
|
};
|
||
|
|
||
|
export const test = base.extend<TestOptions>({
|
||
|
serviceName: ['', { option: true }],
|
||
|
});
|