(args: any[])
| 163 | } |
| 164 | } |
| 165 | function parseArgs(args: any[]) { |
| 166 | const title = |
| 167 | typeof args[0] === 'string' ? (args.shift() as string) : undefined; |
| 168 | const macros = |
| 169 | typeof args[0] === 'function' |
| 170 | ? [args.shift() as AvaMacro] |
| 171 | : Array.isArray(args[0]) |
| 172 | ? (args.shift() as AvaMacro[]) |
| 173 | : []; |
| 174 | return { title, macros, args }; |
| 175 | } |
| 176 | function assertOrderingForDeclaringTest() { |
| 177 | suiteOrTestDeclared = true; |
| 178 | } |
no outgoing calls
searching dependent graphs…