mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-05 06:55:13 +01:00
13 lines
268 B
TypeScript
13 lines
268 B
TypeScript
import { Model } from '@trezor/trezor-user-env-link';
|
|
|
|
export enum PlaywrightTarget {
|
|
Web = 'web',
|
|
Desktop = 'desktop',
|
|
}
|
|
|
|
export type SuiteTestOptions = {
|
|
target: PlaywrightTarget;
|
|
model: Model | undefined;
|
|
firmwareVersion: string | undefined;
|
|
};
|