playwright/e2e/fixture/myFixture.ts

12 lines
236 B
TypeScript
Raw Normal View History

2024-08-02 21:39:54 +02:00
import { test as myTest } from '@playwright/test'
type sagar = {
age: number,
email: string
}
const myFixtureTest = myTest.extend<sagar>({
age: 27,
email: 'sagardurgade@gmail.com'
})
export const test = myFixtureTest;