I want to skip a test case for now in laravel dusk intead of commenting or deleting it, but I could not find the documentation on how to skip the test case.
My Testcase looks like
<?php
namespace Tests\Browser\Auth;
use App\Models\User;
use DateTime;
use Faker\Factory;
use Laravel\Dusk\Browser;
use Tests\DuskTestCase;
class AuthTest extends DuskTestCase
{
// test I want to skip
public function testName1()
{
$this->browse(function (Browser $browser) {
// ...
}
}
public function testName2()
{
$this->browse(function (Browser $browser) {
// ...
}
}
}