mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2026-05-05 04:54:53 +00:00
10 lines
249 B
PHP
10 lines
249 B
PHP
<?php
|
|
|
|
it('renders the login page with QR code and language selector', function () {
|
|
$page = visit('/login');
|
|
|
|
$page->assertSee('Login with lightning')
|
|
->assertSee('Bitcoin, not blockchain')
|
|
->assertNoJavaScriptErrors();
|
|
});
|