DigitalConsumer.FixMyGlass/playwright-tests/framework/TestData.ts
2025-10-22 11:14:24 -04:00

9 lines
No EOL
405 B
TypeScript

import { ITestData as base } from 'safelite-playwright-core'
import { PaymentMethod } from './localTypes/Enums'
export interface ITestData extends base {
// Put any project-specific data here. Anything useful to other Safelite projects should be submitted as a pull request to safelite-playwright-core.
paymentMethod: PaymentMethod
isOptedInForTextMessages: boolean
totalAmount?: number
}