• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

help-me-mom / ng-mocks / cb102152-75ac-4eea-9204-41000bfde55f

09 Feb 2024 01:47PM CUT coverage: 100.0%. Remained the same
cb102152-75ac-4eea-9204-41000bfde55f

push

circleci

web-flow
Merge pull request #8169 from help-me-mom/renovate/e2e/a17/patch-angular-cli-monorepo

3262 of 3262 branches covered (100.0%)

Branch coverage included in aggregate %.

4821 of 4821 relevant lines covered (100.0%)

8379.3 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/libs/ng-mocks/src/lib/common/core.reflect.directive-resolve.ts
1
import { Component, Directive, NgModule } from '@angular/core';
2

3
import collectDeclarations from '../resolve/collect-declarations';
1✔
4

5
import coreReflectBodyCatch from './core.reflect.body-catch';
1✔
6

7
export default (
1✔
8
  def: any,
9
): Directive &
10
  Partial<Component> &
11
  NgModule & {
12
    hostBindings?: Array<[string, any]>;
13
    hostListeners?: Array<[string, any, any]>;
14
    imports?: any[];
15
    standalone?: boolean;
16
  } =>
17
  coreReflectBodyCatch((arg: any) => {
8,874✔
18
    const declaration = collectDeclarations(arg);
8,874✔
19
    if (declaration.Component) {
8,874✔
20
      return declaration.Component;
2,841✔
21
    }
22
    if (declaration.Directive) {
6,033✔
23
      return declaration.Directive;
5,930✔
24
    }
25

26
    throw new Error('Cannot resolve declarations');
103✔
27
  })(def);
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc