Skip to content

Commit b91c818

Browse files
committed
feat: replace test suite in Github action and composer.json
1 parent e3a5bd1 commit b91c818

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ jobs:
3838
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
3939
4040
- name: Execute tests
41-
run: vendor/bin/phpunit
41+
run: vendor/bin/pest

composer.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
"orchestra/testbench": "^6.19|^7.0",
3232
"pestphp/pest": "^1.22",
3333
"pestphp/pest-plugin-laravel": "^1.3",
34-
"phpunit/phpunit": "^9.3.0",
3534
"spatie/test-time": "^1.2.2"
3635
},
3736
"autoload": {
@@ -45,9 +44,8 @@
4544
}
4645
},
4746
"scripts": {
48-
"test": "vendor/bin/phpunit",
49-
"test-coverage": "vendor/bin/phpunit"
50-
47+
"test": "vendor/bin/pest",
48+
"test-coverage": "vendor/bin/pest"
5149
},
5250
"config": {
5351
"sort-packages": true,
@@ -64,4 +62,4 @@
6462
},
6563
"minimum-stability": "dev",
6664
"prefer-stable": true
67-
}
65+
}

0 commit comments

Comments
 (0)