9 lines
194 B
TypeScript
9 lines
194 B
TypeScript
import { test as base, expect } from '@playwright/test';
|
|
|
|
// Declare custom fixtures if needed
|
|
export const test = base.extend({
|
|
// Custom helpers can be attached here
|
|
});
|
|
|
|
export { expect };
|