First round of authentication tests
This commit is contained in:
parent
b50f314eda
commit
f8fa62e3d6
5 changed files with 136 additions and 6 deletions
16
tests/Browser/Pages/BasePage.php
Normal file
16
tests/Browser/Pages/BasePage.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
namespace Pterodactyl\Tests\Browser\Pages;
|
||||
|
||||
use Laravel\Dusk\Page;
|
||||
|
||||
abstract class BasePage extends Page
|
||||
{
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public static function siteElements()
|
||||
{
|
||||
return [];
|
||||
}
|
||||
}
|
Reference in a new issue