We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2e5917 commit 9f1b581Copy full SHA for 9f1b581
README.md
@@ -117,18 +117,29 @@ docker-compose up
117
Database Testing
118
-------
119
120
-Resetting The Database After Each Test
+To reset the database after each test, add:
121
122
```php
123
use Illuminate\Foundation\Testing\DatabaseMigrations;
124
```
125
126
-And inside each test classes.
+Also inside each test classes, add:
127
128
129
use DatabaseMigrations;
130
131
132
+Keep in mind that currently this isn't supported and should be removed:
133
+
134
+```php
135
+use DatabaseTransactions;
136
+```
137
+and
138
139
140
+use RefreshDatabase;
141
142
143
Configuration
144
-------------
145
You can use MongoDB either as the main database, either as a side database. To do so, add a new `mongodb` connection to `config/database.php`:
0 commit comments