diff --git a/tests/Feature/Settings/GlobalSettingTest.php b/tests/Feature/Settings/GlobalSettingTest.php deleted file mode 100644 index 5841449e..00000000 --- a/tests/Feature/Settings/GlobalSettingTest.php +++ /dev/null @@ -1,43 +0,0 @@ -withNamiSettings(); - } - - public function testItLoadsGeneralSettings(): void - { - GeneralSettings::fake([ - 'modules' => ['bill'], - ]); - $this->withoutExceptionHandling(); - $this->login()->init(); - - $response = $this->get('/setting'); - - $this->assertComponent('setting/Index', $response); - $this->assertEquals(['bill'], $this->inertia($response, 'general.modules')); - } - - public function testItGetsOptionsForModels(): void - { - $this->withoutExceptionHandling(); - $this->login()->init(); - - $response = $this->get('/setting'); - - $this->assertContains('bill', $this->inertia($response, 'options.modules')); - } -}