I am wondering how to change the database in Laravel parallel test. I changed the database as below but it didn't work.
ParallelTesting::setUpTestCase(function (int $token, TestCase $testCase) {
$newDb = getenv("DB_DATABASE") . $token;
\Config::set('database.connections.mongodb.database', $newDb);
app("db")->purge($newDb);
});
I have to change the database for each test so that errors and failures do not occur.
After a few hours of struggling with this problem, I finally solved it. I just changed the code above to this and it worked.