14 lines
296 B
PHP
14 lines
296 B
PHP
<?php
|
|
|
|
it('returns translations for valid locale', function (): void {
|
|
$response = $this->getJson('/api/i18n/en');
|
|
|
|
$response->assertOk();
|
|
});
|
|
|
|
it('returns 404 for missing locale', function (): void {
|
|
$response = $this->getJson('/api/i18n/xx');
|
|
|
|
$response->assertStatus(404);
|
|
});
|