From 408ca6e9949d36ec49a087c16dbcf850999edb7b Mon Sep 17 00:00:00 2001 From: Lance Pioch Date: Sat, 29 Oct 2022 02:55:18 -0400 Subject: [PATCH] Take out unnecessary tests --- .github/workflows/dusk.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/dusk.yml b/.github/workflows/dusk.yml index 1f11f1e37..3102e142c 100644 --- a/.github/workflows/dusk.yml +++ b/.github/workflows/dusk.yml @@ -59,18 +59,6 @@ jobs: - name: Start Chrome Driver run: ./vendor/laravel/dusk/bin/chromedriver-linux --whitelisted-ips="" & - - name: Curl Test 127.0.0.1 - run: curl -X POST 127.0.0.1:8000/api/servers - - - name: Curl Test Localhost - run: curl -X POST localhost:8000/api/servers - - - name: PHP Curl Test 127.0.0.1 - run: "php -r '$ch = curl_init(\"127.0.0.1:8000/api/servers\"); curl_setopt($ch, CURLOPT_POST, 1); echo curl_exec($ch) ?: \"failed\";'" - - - name: PHP Curl Test Localhost - run: "php -r '$ch = curl_init(\"localhost:8000/api/servers\"); curl_setopt($ch, CURLOPT_POST, 1); echo curl_exec($ch) ?: \"failed\";'" - - name: Run Dusk Tests run: php artisan dusk - name: Upload Screenshots