diff --git a/phpunit.xml b/phpunit.xml index e9f533d..ff19ac1 100755 --- a/phpunit.xml +++ b/phpunit.xml @@ -21,8 +21,8 @@ - - + + diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php deleted file mode 100755 index 8364a84..0000000 --- a/tests/Feature/ExampleTest.php +++ /dev/null @@ -1,19 +0,0 @@ -get('/'); - - $response->assertStatus(200); - } -} diff --git a/tests/Feature/Models/EventTest.php b/tests/Feature/Models/EventTest.php index fa4c349..28b7724 100644 --- a/tests/Feature/Models/EventTest.php +++ b/tests/Feature/Models/EventTest.php @@ -273,6 +273,7 @@ protected function getUser() protected function getImage() { // Create a 16:9 image + // Remember `install-php-extensions gd` if you try to run this locally, otherwise this test will fail. $width = 1600; $height = 900; $image = imagecreate($width, $height); diff --git a/tests/Unit/ExampleTest.php b/tests/Unit/ExampleTest.php deleted file mode 100755 index 5773b0c..0000000 --- a/tests/Unit/ExampleTest.php +++ /dev/null @@ -1,16 +0,0 @@ -assertTrue(true); - } -}