()
| 46 | * requiresLicense will skip the test if we're not running with a license added |
| 47 | */ |
| 48 | export function requiresLicense() { |
| 49 | if (premiumTestsRequired) { |
| 50 | return; |
| 51 | } |
| 52 | |
| 53 | test.skip(!license); |
| 54 | } |
| 55 | |
| 56 | export function requiresUnlicensed() { |
| 57 | test.skip(license.length > 0); |
no outgoing calls
no test coverage detected