Skip to content

Commit 4f5685c

Browse files
committed
Fix test broken by af90fae
1 parent f4db57b commit 4f5685c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

specs/draggable.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ describe('react-draggable', function () {
111111
});
112112

113113
it('should add and remove user-select styles', function () {
114-
var userSelectStyle = ';user-select: none;-webkit-user-select:none;-moz-user-select:none;' +
115-
'-o-user-select:none;-ms-user-select:none;';
114+
// Karma runs in firefox in our tests
115+
var userSelectStyle = ';user-select: none;-moz-user-select: none;';
116116

117117
drag = TestUtils.renderIntoDocument(
118118
<Draggable>

0 commit comments

Comments
 (0)