(condition, ...args)
| 64 | } |
| 65 | |
| 66 | export const testIf = function (condition, ...args) { |
| 67 | if (condition) { |
| 68 | test(...Array.from(args || [])) |
| 69 | } else { |
| 70 | skip(...Array.from(args || [])) |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | export const { skip, test } = QUnit |
| 75 |
searching dependent graphs…