Skip to content

Commit 90760f4

Browse files
Copilotlimonte
andcommitted
Fix tests to match Swiss-style design text changes
Co-authored-by: limonte <[email protected]>
1 parent a8f1513 commit 90760f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Feature/ExampleTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@
1414
test('browser testing', function () {
1515
$page = visit('/');
1616

17-
$page->assertSee('No todos available.');
17+
$page->assertSee('No tasks yet');
1818
});
1919

2020
test('can add a new todo via browser', function () {
2121
$page = visit('/');
2222

23-
$page->assertSee('Add Todo');
23+
$page->assertSee('Add');
2424
$page->type('input[type="text"]', 'Buy groceries');
2525
$page->click('button[type="submit"]');
2626

2727
$page->waitForText('Buy groceries');
2828
$page->assertSee('Buy groceries');
29-
$page->assertDontSee('No todos available.');
29+
$page->assertDontSee('No tasks yet');
3030
});
3131

3232
test('can add multiple todos via browser', function () {

0 commit comments

Comments
 (0)