- select search dark mode

- file showing fix on mobile devices
- frontend build
This commit is contained in:
Peter Papp
2021-04-19 08:43:18 +02:00
parent fc11a38457
commit 79d3e2beac
7 changed files with 177 additions and 125 deletions

View File

@@ -12,7 +12,7 @@ use Tests\TestCase;
class LanguageEditorTest extends TestCase
{
use DatabaseMigrations;
//use DatabaseMigrations;
protected $setup;
@@ -262,4 +262,16 @@ class LanguageEditorTest extends TestCase
'Hi, my name is John Doe'
);
}
/**
* @test
*/
public function it_get_translated_string_from_t_helper_without_database_connection()
{
$this->assertEquals(
__t('actions.close'),
'Close'
);
}
}