mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-29 18:20:01 +00:00
7 lines
256 B
PHP
7 lines
256 B
PHP
<?php
|
|
$I = new FunctionalTester($scenario);
|
|
$I->wantTo('register a new account');
|
|
$I->amOnPage('/register');
|
|
$I->submitForm('#register', ['email' => 'noreply@gmail.com']);
|
|
$I->see('Password sent!');
|
|
$I->seeRecord('users', ['email' => 'noreply@gmail.com']); |