mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-11 18:02:16 +01:00
12 lines
476 B
TypeScript
12 lines
476 B
TypeScript
import { devices } from '@playwright/test';
|
|
|
|
import { expect, test } from '../../support/fixtures';
|
|
|
|
test.use({ startEmulator: false, ...devices['Desktop Firefox'], channel: 'firefox' });
|
|
test.describe('Firefox', { tag: ['@webOnly', '@noDevice'] }, () => {
|
|
test('Suite does support Firefox', async ({ page, onboardingPage }) => {
|
|
await onboardingPage.verifySuiteIsLoaded();
|
|
await expect(page.getByText('Continue at my own risk')).toBeHidden();
|
|
});
|
|
});
|