mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
58c6ca9822
Use eslint pragmas, fix new errors, etc Closes gh-3148
12 lines
320 B
JavaScript
12 lines
320 B
JavaScript
"use strict";
|
|
|
|
var assert = require( "assert" );
|
|
|
|
delete global.Symbol;
|
|
require( "core-js" );
|
|
|
|
assert.strictEqual( typeof Symbol, "function", "Expected Symbol to be a function" );
|
|
assert.notEqual( typeof Symbol.iterator, "symbol", "Expected Symbol.iterator to be polyfilled" );
|
|
|
|
require( "./lib/ensure_iterability" )();
|