Answer the question
In order to leave comments, you need to log in
Why doesn't jest --coverage show Uncovered Line?
There is a method in the class
public updateRangeSliderValues(settings: ISettings): View {
const isVertical = this.settings?.isVertical as boolean;
if (settings.isTwoRunners) {
this.range.setMarginFromBegin(this.rangeMarginFrom, isVertical);
this.from.setMargin(this.thumbMarginFrom, settings);
this.from.tooltip.setTooltipText(this.settings!.valueFrom);
}
this.range.setMarginFromEnd(this.rangeMarginTo, isVertical);
this.to.setMargin(this.thumbMarginTo, settings);
this.to.tooltip.setTooltipText(this.settings!.valueTo);
return this;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question