|
| 1 | +/** |
| 2 | +* Copyright 2025 Shift Crypto AG |
| 3 | +* |
| 4 | +* Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +* you may not use this file except in compliance with the License. |
| 6 | +* You may obtain a copy of the License at |
| 7 | +* |
| 8 | +* http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +* |
| 10 | +* Unless required by applicable law or agreed to in writing, software |
| 11 | +* distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +* See the License for the specific language governing permissions and |
| 14 | +* limitations under the License. |
| 15 | +*/ |
| 16 | + |
| 17 | +import { test } from './helpers/fixtures'; |
| 18 | +import { startServeWallet, waitForServewallet } from './helpers/servewallet'; |
| 19 | +import { expect } from '@playwright/test'; |
| 20 | + |
| 21 | +test('App main page loads', async ({ page, host, frontendPort, servewalletPort }) => { |
| 22 | + |
| 23 | + await test.step('Start servewallet', async () => { |
| 24 | + startServeWallet(); |
| 25 | + await waitForServewallet(page, servewalletPort, frontendPort, host); |
| 26 | + }); |
| 27 | + |
| 28 | + |
| 29 | + await test.step('Navigate to the app', async () => { |
| 30 | + await page.goto(`http://${host}:${frontendPort}`); |
| 31 | + const body = page.locator('body'); |
| 32 | + await expect(body).toContainText('Please connect your BitBox and tap the side to continue.'); |
| 33 | + }); |
| 34 | +}); |
0 commit comments