From cf01e6561ce831bd48ac9a841a1a0c09039d5bd8 Mon Sep 17 00:00:00 2001 From: krzysztofrewak Date: Wed, 27 Mar 2024 14:52:47 +0100 Subject: [PATCH] #198 - testing (wip) --- .github/workflows/check.js.yml | 2 +- tests/CreatesApplication.php | 20 -------------------- tests/TestCase.php | 1 - 3 files changed, 1 insertion(+), 22 deletions(-) delete mode 100644 tests/CreatesApplication.php diff --git a/.github/workflows/check.js.yml b/.github/workflows/check.js.yml index 58017fac..b278dc9e 100644 --- a/.github/workflows/check.js.yml +++ b/.github/workflows/check.js.yml @@ -1,4 +1,4 @@ -name: "Checking app: testing and linting PHP" +name: "Checking app: testing and linting JS" on: pull_request: diff --git a/tests/CreatesApplication.php b/tests/CreatesApplication.php deleted file mode 100644 index efeacce9..00000000 --- a/tests/CreatesApplication.php +++ /dev/null @@ -1,20 +0,0 @@ -make(Kernel::class)->bootstrap(); - - return $app; - } -} diff --git a/tests/TestCase.php b/tests/TestCase.php index 53411164..ceae8d06 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -8,5 +8,4 @@ abstract class TestCase extends BaseTestCase { - use CreatesApplication; }