Files
git-course/tests/Feature/ExampleTest.php
Iszuddin Ismail 9fbd0b6edb
Some checks failed
CI Deploy Laravel / Test (push) Failing after 1m20s
CI Deploy Laravel / Build (push) Has been skipped
CI Deploy Laravel / Deploy (push) Has been skipped
fixing test and deploy script
2026-05-13 11:47:46 +08:00

13 lines
305 B
PHP

<?php
it('returns a successful response', function () {
$response = $this->get('/');
$response
->assertSuccessful()
->assertSee('Keramat News')
->assertSee('Community Garden Harvest Day Set for Saturday')
->assertSee('Login')
->assertSee('Register');
});