Update comments

This commit is contained in:
Lance Pioch 2022-10-28 13:20:36 -04:00
parent a45d054b48
commit 126c06a929
1 changed files with 2 additions and 6 deletions

View File

@ -67,11 +67,8 @@ class MainTest extends DuskTestCase
$browser->assertDontSee('Forbidden'); $browser->assertDontSee('Forbidden');
$browser->assertSee('Admin'); $browser->assertSee('Admin');
// Click on Users in navigation then click on Create New
$browser->visit('/admin/users/new');
// $browser->assertSee('Create New');
// Create new non administrator user and see success // Create new non administrator user and see success
$browser->visit('/admin/users/new');
$browser->type('email', 'matthew@example.com'); $browser->type('email', 'matthew@example.com');
$browser->type('username', 'bird'); $browser->type('username', 'bird');
$browser->type('name_first', 'Matthew'); $browser->type('name_first', 'Matthew');
@ -103,8 +100,7 @@ class MainTest extends DuskTestCase
$browser->clickAndWaitForReload('button[type=submit]'); $browser->clickAndWaitForReload('button[type=submit]');
$browser->assertPathIs('/admin/locations/view/1'); $browser->assertPathIs('/admin/locations/view/1');
// Click on Nodes in navigation and then click on Create New // Click on Nodes in navigation and then create a new Node successfully
// Create New Node successfully
$browser->visit('/admin/nodes/new'); $browser->visit('/admin/nodes/new');
$browser->type('name', 'noderize'); $browser->type('name', 'noderize');
$browser->type('description', 'my server is the best'); $browser->type('description', 'my server is the best');