File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ import { LoaderCircle } from 'lucide-vue-next';
31
31
</div >
32
32
33
33
<div class =" flex items-center" >
34
- <Button class =" w-full" :disabled =" processing" >
34
+ <Button class =" w-full" :disabled =" processing" data-test = " confirm-password-button " >
35
35
<LoaderCircle v-if =" processing" class =" h-4 w-4 animate-spin" />
36
36
Confirm Password
37
37
</Button >
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ defineProps<{
72
72
</Label >
73
73
</div >
74
74
75
- <Button type =" submit" class =" mt-4 w-full" :tabindex =" 4" :disabled =" processing" >
75
+ <Button type =" submit" class =" mt-4 w-full" :tabindex =" 4" :disabled =" processing" data-test = " login-button " >
76
76
<LoaderCircle v-if =" processing" class =" h-4 w-4 animate-spin" />
77
77
Log in
78
78
</Button >
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ import { LoaderCircle } from 'lucide-vue-next';
54
54
<InputError :message =" errors.password_confirmation" />
55
55
</div >
56
56
57
- <Button type =" submit" class =" mt-2 w-full" tabindex =" 5" :disabled =" processing" >
57
+ <Button type =" submit" class =" mt-2 w-full" tabindex =" 5" :disabled =" processing" data-test = " register-user-button " >
58
58
<LoaderCircle v-if =" processing" class =" h-4 w-4 animate-spin" />
59
59
Create account
60
60
</Button >
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ const inputEmail = ref(props.email);
61
61
<InputError :message =" errors.password_confirmation" />
62
62
</div >
63
63
64
- <Button type =" submit" class =" mt-4 w-full" :disabled =" processing" >
64
+ <Button type =" submit" class =" mt-4 w-full" :disabled =" processing" data-test = " reset-password-button " >
65
65
<LoaderCircle v-if =" processing" class =" h-4 w-4 animate-spin" />
66
66
Reset password
67
67
</Button >
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ const currentPasswordInput = ref<HTMLInputElement | null>(null);
84
84
</div >
85
85
86
86
<div class =" flex items-center gap-4" >
87
- <Button :disabled =" processing" >Save password</Button >
87
+ <Button :disabled =" processing" data-test = " update-password-button " >Save password</Button >
88
88
89
89
<Transition
90
90
enter-active-class =" transition ease-in-out"
You can’t perform that action at this time.
0 commit comments