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

atinc / ngx-tethys / #71

06 Aug 2025 02:34AM UTC coverage: 9.672% (-80.6%) from 90.298%
#71

push

web-flow
feat(date-picker): add dateCellRender #TINFR-2386 (#3495) (#3499)

104 of 6813 branches covered (1.53%)

Branch coverage included in aggregate %.

5 of 5 new or added lines in 1 file covered. (100.0%)

11855 existing lines in 343 files now uncovered.

1969 of 14620 relevant lines covered (13.47%)

6.13 hits per line

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

50.0
/src/form/validator/min-validator.directive.ts
1
import { Directive, Input, forwardRef } from '@angular/core';
2
import { Validator, AbstractControl, NG_VALIDATORS, Validators, ValidatorFn } from '@angular/forms';
3

4
/**
5
 * @name min
6
 * @order 35
7
 */
8
@Directive({
1✔
9
    // eslint-disable-next-line @angular-eslint/directive-selector
UNCOV
10
    selector: '[min][formControlName],[min][formControl],[min][ngModel]',
×
11
    providers: [
12
        {
UNCOV
13
            provide: NG_VALIDATORS,
×
14
            useExisting: forwardRef(() => ThyMinDirective),
15
            multi: true
1✔
16
        }
17
    ]
18
})
19
export class ThyMinDirective implements Validator {
1✔
20
    private _validator: ValidatorFn;
21
    @Input() public set min(value: string) {
22
        this._validator = Validators.min(parseFloat(value));
23
    }
24

25
    public validate(control: AbstractControl): { [key: string]: any } {
UNCOV
26
        return this._validator(control);
×
27
    }
28
}
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