Skip to content

Commit 3e4fab6

Browse files
committed
1 parent f2de3da commit 3e4fab6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/mx.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757

5858
QUnit.test("Multiplex Iterable", function (assert) {
59-
if (window.Set) {
59+
if (window.Set && window.Symbol) {
6060
var _set = new window.Set(),
6161
_source = mx(_set);
6262

@@ -139,7 +139,7 @@
139139
assert.ok(mx.is([1]), "Array Passed!");
140140
assert.ok(mx.is("mx"), "String Passed!");
141141

142-
if (window.Set) {
142+
if (window.Set && window.Symbol) {
143143
assert.ok(mx.is(new window.Set([1, 2, 3])), "Iterable Passed!");
144144
}
145145

0 commit comments

Comments
 (0)