()
| 1430 | } |
| 1431 | |
| 1432 | function saveGlobal() { |
| 1433 | config.pollution = []; |
| 1434 | |
| 1435 | if ( config.noglobals ) { |
| 1436 | for ( var key in window ) { |
| 1437 | // in Opera sometimes DOM element ids show up here, ignore them |
| 1438 | if ( !hasOwn.call( window, key ) || /^qunit-test-output/.test( key ) ) { |
| 1439 | continue; |
| 1440 | } |
| 1441 | config.pollution.push( key ); |
| 1442 | } |
| 1443 | } |
| 1444 | } |
| 1445 | |
| 1446 | function checkPollution() { |
| 1447 | var newGlobals, |
no outgoing calls
no test coverage detected