diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 514a49d..4b1bb3f 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -34,4 +34,4 @@ jobs: run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction - name: Execute tests - run: vendor/bin/pest + run: vendor/bin/phpunit diff --git a/composer.json b/composer.json index cb6d911..1a85e89 100644 --- a/composer.json +++ b/composer.json @@ -37,8 +37,8 @@ } }, "scripts": { - "test": "vendor/bin/pest", - "test-coverage": "vendor/bin/pest --coverage", + "test": "vendor/bin/phpunit", + "test-coverage": "vendor/bin/phpunit --coverage", "format": "vendor/bin/php-cs-fixer fix --allow-risky=yes" }, "config": {