Skip live designs in github actions

This commit is contained in:
David Bomba 2023-01-27 22:10:55 +11:00
parent 20b7bdfaef
commit 411ae1100a

View File

@ -34,6 +34,11 @@ class LiveDesignTest extends TestCase
$this->withoutMiddleware( $this->withoutMiddleware(
ThrottleRequests::class ThrottleRequests::class
); );
if (config('ninja.testvars.travis') !== false) {
$this->markTestSkipped('Skip test for Travis');
}
} }
public function testDesignRoute200() public function testDesignRoute200()