Skip to content

Commit 47c85bd

Browse files
authored
Update README.md
1 parent e725dfe commit 47c85bd

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -133,15 +133,14 @@ Also make sure to add the `.phpunit.database.checksum` to your `.gitignore` file
133133

134134
***Pest:***
135135
```php
136-
// Pest.php
137136

138137
use LaracraftTech\LaravelUsefulTraits\RefreshDatabaseFast;
139-
use Tests\TestCase;
140138

141-
uses(
142-
Tests\TestCase::class,
143-
RefreshDatabaseFast::class
144-
)->in('Feature');
139+
uses(RefreshDatabaseFast::class);
140+
141+
it('does_something', function() {
142+
// ...
143+
});
145144
```
146145

147146
***PHPUnit:***

0 commit comments

Comments
 (0)