Level 51
You can actually define a whole separate database in your laravel database config. Then reference it in your php unit xml file.
I have a SQLite database that I used for part of my application, mainly I used MySQL. But whenever I run a test I always get an error said that the table is already exists in the SQLite database. Is there any specific things to do if I wanna use SQLite?
@webrobert Thanks for the reply, I ended up put Schema::dropIfExists(); before the Schema::create() function, and it works
Please or to participate in this conversation.