Back

Hi guys!
I have one question about unit tests:
How do you guys do it when testing, do you create a db just for testing?

#Laravel #phpunit

2

289

Use SQLite in memory for testing 🫶

1

100

Yes! in the previous version, I use MySQL for my testing. Now I'm using SQLite.

By the way, I also use SQLite for my small blog that made with TALL stack.

65