From 411ae1100af8c2d0aa8b463567e8316a2d974882 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Fri, 27 Jan 2023 22:10:55 +1100 Subject: [PATCH] Skip live designs in github actions --- tests/Feature/LiveDesignTest.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/Feature/LiveDesignTest.php b/tests/Feature/LiveDesignTest.php index 8ec7d1699d87..51d6fbfdf3ba 100644 --- a/tests/Feature/LiveDesignTest.php +++ b/tests/Feature/LiveDesignTest.php @@ -34,6 +34,11 @@ class LiveDesignTest extends TestCase $this->withoutMiddleware( ThrottleRequests::class ); + + if (config('ninja.testvars.travis') !== false) { + $this->markTestSkipped('Skip test for Travis'); + } + } public function testDesignRoute200()