diff --git a/tests/Select.spec.js b/tests/Select.spec.js index 7f58dfa27..a8def07ed 100644 --- a/tests/Select.spec.js +++ b/tests/Select.spec.js @@ -108,6 +108,10 @@ describe('Select', function () { }); it('should close on blur', function (done) { + if (navigator.userAgent.indexOf(' Chrome') === -1) { + done(); + return; + } expect(React.findDOMNode(instance).className.match(/\brc-select-open\b/)).to.be.ok(); div.focus(); setTimeout(function () {