14 lines
334 B
PHP
14 lines
334 B
PHP
<?php
|
|
|
|
test('returns a successful response', function () {
|
|
$response = $this->get(route('home'));
|
|
|
|
$response
|
|
->assertOk()
|
|
->assertSee('Embedd HUB')
|
|
->assertSee('Local embedding workbench')
|
|
->assertSee('Ollama')
|
|
->assertDontSee('favicon.svg')
|
|
->assertDontSee('favicon.ico');
|
|
});
|