Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b813c73

Browse files
committed
Avoid double quotes
1 parent ee073cf commit b813c73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ describe('auto-check element', function() {
5656
})
5757
})
5858

59-
it('emits success event with message when server returns a non error response', async function() {
59+
it('emits a success event with message when server returns a non error response', async function() {
6060
const input = document.querySelector('input')
6161
triggerChange(input, 'hub')
6262
const event = await once(input, 'auto-check-success')
@@ -165,7 +165,7 @@ describe('auto-check element', function() {
165165
})
166166
})
167167

168-
it("doesn't set input as invalid the `required` attribute isn't set", function(done) {
168+
it('skips validation if required attribute is not present', function(done) {
169169
const autoCheck = document.querySelector('auto-check')
170170
autoCheck.src = '/fail'
171171
const input = document.querySelector('input')

0 commit comments

Comments
 (0)