We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8f1513 commit 90760f4Copy full SHA for 90760f4
tests/Feature/ExampleTest.php
@@ -14,19 +14,19 @@
14
test('browser testing', function () {
15
$page = visit('/');
16
17
- $page->assertSee('No todos available.');
+ $page->assertSee('No tasks yet');
18
});
19
20
test('can add a new todo via browser', function () {
21
22
23
- $page->assertSee('Add Todo');
+ $page->assertSee('Add');
24
$page->type('input[type="text"]', 'Buy groceries');
25
$page->click('button[type="submit"]');
26
27
$page->waitForText('Buy groceries');
28
$page->assertSee('Buy groceries');
29
- $page->assertDontSee('No todos available.');
+ $page->assertDontSee('No tasks yet');
30
31
32
test('can add multiple todos via browser', function () {
0 commit comments