* Whether the given class doc is considered a test harness. We naively detect * test harness classes by checking the inheritance chain for "ComponentHarness".
(doc: CategorizedClassDoc)
| 236 | * test harness classes by checking the inheritance chain for "ComponentHarness". |
| 237 | */ |
| 238 | private _isTestHarness(doc: CategorizedClassDoc): boolean { |
| 239 | return doc.inheritedDocs.some(d => d.name === 'ComponentHarness'); |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | /** Filters any duplicate classDoc members from an array */ |