mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2026-05-03 16:24:55 +00:00
16 lines
376 B
PHP
16 lines
376 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();
|
|
});
|
|
|
|
it('renders the registration page', function () {
|
|
$page = visit('/register');
|
|
|
|
$page->assertNoJavaScriptErrors();
|
|
});
|