Skip to content
This repository has been archived by the owner on Dec 25, 2017. It is now read-only.

Commit

Permalink
test(e2e): update e2e test template
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon committed Dec 10, 2015
1 parent d0e436b commit 9cb9328
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/e2e/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
id="inputUsername"
placeholder="Username"
aria-describedby="inputUsernameStatus"
v-validate:username.required.maxlength="{ required: true, maxlength: 16 }">
v-validate:username="{ required: true, maxlength: 16 }">
<span id="inputUsernameIcon"
class="glyphicon form-control-feedback"
aria-hidden="true"
Expand All @@ -45,7 +45,7 @@
id="inputEmail"
placeholder="Email"
aria-describedby="inputEmailStatus"
v-validate:email.required.email>
v-validate:email="['required', 'email']">
<span id="inputEmailIcon"
class="glyphicon form-control-feedback"
aria-hidden="true"
Expand All @@ -66,7 +66,7 @@
id="inputConfirmEmail"
placeholder="Confirm email"
aria-describedby="inputConfirmEmailStatus"
v-validate:confirmEmail.required.email.same="{ required: true, email: true, same: 'email' }">
v-validate:confirmEmail="{ required: true, email: true, same: 'email' }">
<span id="inputConfirmEmailIcon"
class="glyphicon form-control-feedback"
aria-hidden="true"
Expand All @@ -87,7 +87,7 @@
id="inputPassword"
placeholder="Password"
aria-describedby="inputPasswordStatus"
v-validate:password.required.minlength.maxlength="{ required: true, minlength: 8, maxlength: 16 }">
v-validate:password="{ required: true, minlength: 8, maxlength: 16 }">
<span id="inputPasswordIcon"
class="glyphicon form-control-feedback"
aria-hidden="true"
Expand Down

0 comments on commit 9cb9328

Please sign in to comment.