Skip to content

Commit 7aff5ad

Browse files
committed
Modify test to ensure casing is retained
1 parent d9bb0a9 commit 7aff5ad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ describe('filter-input', function() {
5353
assert.equal(customEvent.detail.count, 1)
5454
assert.equal(customEvent.detail.total, 4)
5555

56-
changeValue(input, 'boom')
56+
changeValue(input, 'BB-8 robot')
5757
assert.notOk(newItem.hidden, 'New item form should be shown')
58-
assert.equal(newItem.querySelector('[data-filter-new-item-value]').value, 'boom')
59-
assert.equal(newItem.querySelector('[data-filter-new-item-text]').textContent, 'boom')
58+
assert.equal(newItem.querySelector('[data-filter-new-item-value]').value, 'BB-8 robot')
59+
assert.equal(newItem.querySelector('[data-filter-new-item-text]').textContent, 'BB-8 robot')
6060
})
6161

6262
it('filters and toggles blankslate', async function() {

0 commit comments

Comments
 (0)