()
| 3468 | } |
| 3469 | |
| 3470 | function saveGlobal() { |
| 3471 | config.pollution = []; |
| 3472 | |
| 3473 | if (config.noglobals) { |
| 3474 | for (var key in global$1) { |
| 3475 | if (hasOwn.call(global$1, key)) { |
| 3476 | |
| 3477 | // In Opera sometimes DOM element ids show up here, ignore them |
| 3478 | if (/^qunit-test-output/.test(key)) { |
| 3479 | continue; |
| 3480 | } |
| 3481 | config.pollution.push(key); |
| 3482 | } |
| 3483 | } |
| 3484 | } |
| 3485 | } |
| 3486 | |
| 3487 | function checkPollution() { |
| 3488 | var newGlobals, |
no outgoing calls
no test coverage detected