Skip to content

Commit 0b91586

Browse files
committed
wip
Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent 1c41e5d commit 0b91586

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"@vue:uninstall"
3434
],
3535
"prepare": "@php vendor/bin/testbench package:discover --ansi",
36-
"livewire:install": "@composer require --dev \"laravel/livewire-starter-kit\"",
36+
"livewire:install": "@composer require --dev \"laravel/livewire-starter-kit:dev-pest-ci\"",
3737
"livewire:uninstall": "@composer remove --dev \"laravel/livewire-starter-kit\"",
3838
"livewire:build": [
3939
"@vue:uninstall",
@@ -53,7 +53,7 @@
5353
"@livewire:uninstall"
5454
],
5555
"livewire:serve": "cd \"./vendor/laravel/livewire-starter-kit\" && php artisan serve",
56-
"vue:install": "@composer require --dev \"laravel/vue-starter-kit\"",
56+
"vue:install": "@composer require --dev \"laravel/vue-starter-kit:dev-pest-ci\"",
5757
"vue:uninstall": "@composer remove --dev \"laravel/vue-starter-kit\"",
5858
"vue:build": [
5959
"@livewire:uninstall",

tests/Browser/Auth/AuthenticationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
visit(route('dashboard'))
5353
->click($user->name)
54-
->click('Log out')
54+
->click('@logout-button')
5555
->assertUrlIs(route('home'))
5656
->assertNoConsoleLogs()
5757
->assertNoJavaScriptErrors();

tests/Browser/Settings/ProfileUpdateTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
actingAs($user = User::factory()->create());
1111

1212
visit(route('profile.edit'))
13-
->assertSee('Profile information')
1413
->assertSee('Update your name and email address')
1514
->assertValue('name', $user->name)
1615
->assertValue('email', $user->email)
@@ -22,7 +21,6 @@
2221
actingAs($user = User::factory()->create());
2322

2423
visit(route('profile.edit'))
25-
->assertSee('Profile information')
2624
->assertSee('Update your name and email address')
2725
->fill('name', 'Test User')
2826
->fill('email', '[email protected]')
@@ -43,7 +41,6 @@
4341
actingAs($user = User::factory()->create());
4442

4543
visit(route('profile.edit'))
46-
->assertSee('Profile information')
4744
->assertSee('Update your name and email address')
4845
->fill('name', 'Test User')
4946
->fill('email', $user->email)

0 commit comments

Comments
 (0)