Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Last active May 31, 2020 08:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uno-de-piera/a73144f21e1a022b319251807ae5880a to your computer and use it in GitHub Desktop.
Save uno-de-piera/a73144f21e1a022b319251807ae5880a to your computer and use it in GitHub Desktop.
<?php
/**
* @group framework-page
*/
public function testCheckErrorFormFrameworkPage()
{
factory(User::class, 1)->create();
$this->browse(function (Browser $browser) {
$browser->loginAs(User::find(1))
->visit(new \Tests\Browser\Pages\Framework)
->press('Save Framework')
->assertSee('The name field is required.');
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment