(testName, callback)
| 3504 | |
| 3505 | // Will be exposed as QUnit.test |
| 3506 | function test(testName, callback) { |
| 3507 | if (focused$1) { |
| 3508 | return; |
| 3509 | } |
| 3510 | |
| 3511 | var newTest = new Test({ |
| 3512 | testName: testName, |
| 3513 | callback: callback |
| 3514 | }); |
| 3515 | |
| 3516 | newTest.queue(); |
| 3517 | } |
| 3518 | |
| 3519 | function todo(testName, callback) { |
| 3520 | if (focused$1) { |
no outgoing calls
no test coverage detected