(description: string, specDefinitions: SpecDefinitionsFn)
| 92 | export const _interface = function (jasmine: Jasmine, env: any) { |
| 93 | const jasmineInterface = { |
| 94 | describe(description: string, specDefinitions: SpecDefinitionsFn) { |
| 95 | return env.describe(description, specDefinitions); |
| 96 | }, |
| 97 | |
| 98 | xdescribe(description: string, specDefinitions: SpecDefinitionsFn) { |
| 99 | return env.xdescribe(description, specDefinitions); |
no outgoing calls
no test coverage detected