mirror of
https://github.com/Choices-js/Choices.git
synced 2026-03-15 07:05:47 +01:00
11 lines
298 B
TypeScript
11 lines
298 B
TypeScript
import { test as base } from '@playwright/test';
|
|
|
|
export type BundleTest = {
|
|
bundle: string | undefined;
|
|
};
|
|
|
|
export const test = base.extend<BundleTest>({
|
|
// Define an option and provide a default value.
|
|
// We can later override it in the config.
|
|
bundle: [undefined, { option: true }],
|
|
});
|