1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 21:14:03 +00:00

tenancy=false => central=true; move config to env setup

This commit is contained in:
Samuel Štancl 2019-10-17 20:48:20 +02:00
parent 2def3b20dd
commit 51ed344181
4 changed files with 9 additions and 8 deletions

View file

@ -40,11 +40,6 @@ class QueueTest extends TestCase
$this->loadLaravelMigrations(['--database' => 'tenant']);
Event::fake();
config(['queue.connections.central' => [
'driver' => 'sync',
'tenancy' => false,
]]);
dispatch(new TestJob())->onConnection('central');
Event::assertDispatched(JobProcessing::class, function ($event) {