From d03e1e2c3591faf7ca83bbb0f83d138e7ab36b5f Mon Sep 17 00:00:00 2001 From: Heittola Date: Thu, 3 May 2018 10:41:18 -0400 Subject: [PATCH] removed test that is no longer valid --- tests/unit/components/inputs/select-test.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/unit/components/inputs/select-test.js b/tests/unit/components/inputs/select-test.js index 385a8de6..1120a68d 100644 --- a/tests/unit/components/inputs/select-test.js +++ b/tests/unit/components/inputs/select-test.js @@ -598,12 +598,4 @@ describe('Unit: frost-bunsen-input-select', function () { }) }) }) - - describe('handleEmptyFilter', function () { - it('should handle empty filter', function () { - component.set('options', [{label: 'something', value: 'some other thing'}]) - component.handleEmptyFilter() - expect(component.get('options').length, 'options should be empty').to.equal(0) - }) - }) })