We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1e0828 commit c51500eCopy full SHA for c51500e
composer.json
@@ -24,8 +24,8 @@
24
"nunomaduro/collision": "^7.9",
25
"nunomaduro/larastan": "^2.0.1",
26
"orchestra/testbench": "^8.0",
27
- "pestphp/pest": "^2.0",
28
- "pestphp/pest-plugin-laravel": "^2.0",
+ "pestphp/pest": "^1.22 || ^2.0",
+ "pestphp/pest-plugin-laravel": "^1.22 || ^2.0",
29
"phpstan/extension-installer": "^1.1",
30
"phpstan/phpstan-deprecation-rules": "^1.0",
31
"phpstan/phpstan-phpunit": "^1.0",
tests/ExampleTest.php
@@ -1,11 +1,9 @@
1
<?php
2
3
-it('can test', function () {
4
- expect(true)->toBeTrue();
5
-});
6
-
7
it('covers all cases', function () {
+ //TODO
8
// Write tests for all kind of scopes
9
// Create a db with fixed date values
10
// and test with: Carbon::setTestNow('2023-01-01');
11
-})->todo();
+ expect(true)->toBeTrue();
+});
0 commit comments