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

IgniteUI / igniteui-angular / 16053471080

03 Jul 2025 02:41PM UTC coverage: 4.981% (-86.4%) from 91.409%
16053471080

Pull #16021

github

web-flow
Merge 7c49966eb into 7e40671a1
Pull Request #16021: fix(radio-group): dynamically added radio buttons do not initialize

178 of 15753 branches covered (1.13%)

13 of 14 new or added lines in 2 files covered. (92.86%)

25644 existing lines in 324 files now uncovered.

1478 of 29670 relevant lines covered (4.98%)

0.51 hits per line

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

2.76
/projects/igniteui-angular/src/lib/splitter/splitter.component.ts
1
import { AfterContentInit, Component, ContentChildren, ElementRef, EventEmitter, HostBinding, HostListener, Inject, Input, NgZone, Output, QueryList, booleanAttribute, forwardRef, DOCUMENT } from '@angular/core';
2
import { DragDirection, IDragMoveEventArgs, IDragStartEventArgs, IgxDragDirective, IgxDragIgnoreDirective } from '../directives/drag-drop/drag-drop.directive';
3
import { IgxSplitterPaneComponent } from './splitter-pane/splitter-pane.component';
4
import { take } from 'rxjs';
5

6
/**
7
 * An enumeration that defines the `SplitterComponent` panes orientation.
8
 */
9
export enum SplitterType {
3✔
10
    Horizontal,
3✔
11
    Vertical
3✔
12
}
13

14
export declare interface ISplitterBarResizeEventArgs {
15
    pane: IgxSplitterPaneComponent;
16
    sibling: IgxSplitterPaneComponent;
17
}
18

19
/**
20
 * Provides a framework for a simple layout, splitting the view horizontally or vertically
21
 * into multiple smaller resizable and collapsible areas.
22
 *
23
 * @igxModule IgxSplitterModule
24
 *
25
 * @igxParent Layouts
26
 *
27
 * @igxTheme igx-splitter-theme
28
 *
29
 * @igxKeywords splitter panes layout
30
 *
31
 * @igxGroup presentation
32
 *
33
 * @example
34
 * ```html
35
 * <igx-splitter>
36
 *  <igx-splitter-pane>
37
 *      ...
38
 *  </igx-splitter-pane>
39
 *  <igx-splitter-pane>
40
 *      ...
41
 *  </igx-splitter-pane>
42
 * </igx-splitter>
43
 * ```
44
 */
45
@Component({
46
    selector: 'igx-splitter',
47
    templateUrl: './splitter.component.html',
UNCOV
48
    imports: [forwardRef(() => IgxSplitBarComponent)]
×
49
})
50
export class IgxSplitterComponent implements AfterContentInit {
3✔
51
    /**
52
     * Gets the list of splitter panes.
53
     *
54
     * @example
55
     * ```typescript
56
     * const panes = this.splitter.panes;
57
     * ```
58
     */
59
    @ContentChildren(IgxSplitterPaneComponent, { read: IgxSplitterPaneComponent })
60
    public panes!: QueryList<IgxSplitterPaneComponent>;
61

62
    /**
63
    * @hidden
64
    * @internal
65
    */
66
    @HostBinding('class.igx-splitter')
UNCOV
67
    public cssClass = 'igx-splitter';
×
68

69
    /**
70
     * @hidden @internal
71
     * Gets/Sets the `overflow` property of the current splitter.
72
     */
73
    @HostBinding('style.overflow')
UNCOV
74
    public overflow = 'hidden';
×
75

76
    /**
77
     * @hidden @internal
78
     * Sets/Gets the `display` property of the current splitter.
79
     */
80
    @HostBinding('style.display')
UNCOV
81
    public display = 'flex';
×
82

83
    /**
84
     * @hidden
85
     * @internal
86
     */
87
    @HostBinding('attr.aria-orientation')
88
    public get orientation() {
UNCOV
89
        return this.type === SplitterType.Horizontal ? 'horizontal' : 'vertical';
×
90
    }
91

92
    /**
93
     * Event fired when resizing of panes starts.
94
     *
95
     * @example
96
     * ```html
97
     * <igx-splitter (resizeStart)='resizeStart($event)'>
98
     *  <igx-splitter-pane>...</igx-splitter-pane>
99
     * </igx-splitter>
100
     * ```
101
     */
102
    @Output()
UNCOV
103
    public resizeStart = new EventEmitter<ISplitterBarResizeEventArgs>();
×
104

105
    /**
106
     * Event fired when resizing of panes is in progress.
107
     *
108
     * @example
109
     * ```html
110
     * <igx-splitter (resizing)='resizing($event)'>
111
     *  <igx-splitter-pane>...</igx-splitter-pane>
112
     * </igx-splitter>
113
     * ```
114
     */
115
    @Output()
UNCOV
116
    public resizing = new EventEmitter<ISplitterBarResizeEventArgs>();
×
117

118

119
    /**
120
     * Event fired when resizing of panes ends.
121
     *
122
     * @example
123
     * ```html
124
     * <igx-splitter (resizeEnd)='resizeEnd($event)'>
125
     *  <igx-splitter-pane>...</igx-splitter-pane>
126
     * </igx-splitter>
127
     * ```
128
     */
129
    @Output()
UNCOV
130
    public resizeEnd = new EventEmitter<ISplitterBarResizeEventArgs>();
×
131

UNCOV
132
    private _type: SplitterType = SplitterType.Horizontal;
×
133

134
    /**
135
     * @hidden @internal
136
     * A field that holds the initial size of the main `IgxSplitterPaneComponent` in each pair of panes divided by a splitter bar.
137
     */
138
    private initialPaneSize!: number;
139

140
    /**
141
     * @hidden @internal
142
     * A field that holds the initial size of the sibling pane in each pair of panes divided by a gripper.
143
     * @memberof SplitterComponent
144
     */
145
    private initialSiblingSize!: number;
146

147
    /**
148
     * @hidden @internal
149
     * The main pane in each pair of panes divided by a gripper.
150
     */
151
    private pane!: IgxSplitterPaneComponent;
152

153
    /**
154
     * The sibling pane in each pair of panes divided by a splitter bar.
155
     */
156
    private sibling!: IgxSplitterPaneComponent;
157

UNCOV
158
    constructor(@Inject(DOCUMENT) public document, private elementRef: ElementRef, private zone: NgZone) { }
×
159
    /**
160
     * Gets/Sets the splitter orientation.
161
     *
162
     * @example
163
     * ```html
164
     * <igx-splitter [type]="type">...</igx-splitter>
165
     * ```
166
     */
167
    @Input()
168
    public get type() {
UNCOV
169
        return this._type;
×
170
    }
171
    public set type(value) {
UNCOV
172
        this._type = value;
×
UNCOV
173
        this.resetPaneSizes();
×
UNCOV
174
        this.panes?.notifyOnChanges();
×
175
    }
176

177
    /**
178
     * Sets the visibility of the handle and expanders in the splitter bar.
179
     * False by default
180
     *
181
     * @example
182
     * ```html
183
     * <igx-splitter [nonCollapsible]='true'>
184
     * </igx-splitter>
185
     * ```
186
     */
187
    @Input({ transform: booleanAttribute })
UNCOV
188
    public nonCollapsible = false; // Input to toggle showing/hiding expanders
×
189

190
    /**
191
     * @hidden @internal
192
     * Gets the `flex-direction` property of the current `SplitterComponent`.
193
     */
194
    @HostBinding('style.flex-direction')
195
    public get direction(): string {
UNCOV
196
        return this.type === SplitterType.Horizontal ? 'row' : 'column';
×
197
    }
198

199
    /** @hidden @internal */
200
    public ngAfterContentInit(): void {
UNCOV
201
        this.zone.onStable.pipe(take(1)).subscribe(() => {
×
UNCOV
202
            this.initPanes();
×
203
        });
UNCOV
204
        this.panes.changes.subscribe(() => {
×
UNCOV
205
            this.initPanes();
×
206
        });
207
    }
208

209
    /**
210
     * @hidden @internal
211
     * This method performs  initialization logic when the user starts dragging the splitter bar between each pair of panes.
212
     * @param pane - the main pane associated with the currently dragged bar.
213
     */
214
    public onMoveStart(pane: IgxSplitterPaneComponent) {
UNCOV
215
        const panes = this.panes.toArray();
×
UNCOV
216
        this.pane = pane;
×
UNCOV
217
        this.sibling = panes[panes.indexOf(this.pane) + 1];
×
218

UNCOV
219
        const paneRect = this.pane.element.getBoundingClientRect();
×
UNCOV
220
        this.initialPaneSize = this.type === SplitterType.Horizontal ? paneRect.width : paneRect.height;
×
221

UNCOV
222
        const siblingRect = this.sibling.element.getBoundingClientRect();
×
UNCOV
223
        this.initialSiblingSize = this.type === SplitterType.Horizontal ? siblingRect.width : siblingRect.height;
×
UNCOV
224
        const args: ISplitterBarResizeEventArgs = { pane: this.pane, sibling: this.sibling };
×
UNCOV
225
        this.resizeStart.emit(args);
×
226
    }
227

228
    /**
229
     * @hidden @internal
230
     * This method performs calculations concerning the sizes of each pair of panes when the bar between them is dragged.
231
     * @param delta - The difference along the X (or Y) axis between the initial and the current point when dragging the bar.
232
     */
233
    public onMoving(delta: number) {
UNCOV
234
        const [ paneSize, siblingSize ] = this.calcNewSizes(delta);
×
235

UNCOV
236
        this.pane.dragSize = paneSize + 'px';
×
UNCOV
237
        this.sibling.dragSize = siblingSize + 'px';
×
238

UNCOV
239
        const args: ISplitterBarResizeEventArgs = { pane: this.pane, sibling: this.sibling };
×
UNCOV
240
        this.resizing.emit(args);
×
241
    }
242

243
    public onMoveEnd(delta: number) {
UNCOV
244
        let [ paneSize, siblingSize ] = this.calcNewSizes(delta);
×
245

UNCOV
246
        if (paneSize + siblingSize > this.getTotalSize() && delta < 0) {
×
247
            paneSize = this.getTotalSize();
×
248
            siblingSize = 0;
×
UNCOV
249
        } else if(paneSize + siblingSize > this.getTotalSize() && delta > 0) {
×
250
            paneSize = 0;
×
251
            siblingSize = this.getTotalSize();
×
252
        }
253

UNCOV
254
        if (this.pane.isPercentageSize) {
×
255
            // handle % resizes
UNCOV
256
            const totalSize = this.getTotalSize();
×
UNCOV
257
            const percentPaneSize = (paneSize / totalSize) * 100;
×
UNCOV
258
            this.pane.size = percentPaneSize + '%';
×
259
        } else {
260
            // px resize
UNCOV
261
            this.pane.size = paneSize + 'px';
×
262
        }
263

UNCOV
264
        if (this.sibling.isPercentageSize) {
×
265
            // handle % resizes
UNCOV
266
            const totalSize = this.getTotalSize();
×
UNCOV
267
            const percentSiblingPaneSize = (siblingSize / totalSize) * 100;
×
UNCOV
268
            this.sibling.size = percentSiblingPaneSize + '%';
×
269
        } else {
270
            // px resize
UNCOV
271
            this.sibling.size = siblingSize + 'px';
×
272
        }
UNCOV
273
        this.pane.dragSize = null;
×
UNCOV
274
        this.sibling.dragSize = null;
×
275

UNCOV
276
        const args: ISplitterBarResizeEventArgs = { pane: this.pane, sibling: this.sibling };
×
UNCOV
277
        this.resizeEnd.emit(args);
×
278
    }
279

280
    /** @hidden @internal */
281
    public getPaneSiblingsByOrder(order: number, barIndex: number): Array<IgxSplitterPaneComponent> {
UNCOV
282
        const panes = this.panes.toArray();
×
UNCOV
283
        const prevPane = panes[order - barIndex - 1];
×
UNCOV
284
        const nextPane = panes[order - barIndex];
×
UNCOV
285
        const siblings = [prevPane, nextPane];
×
UNCOV
286
        return siblings;
×
287
    }
288

289
    private getTotalSize() {
UNCOV
290
        const computed = this.document.defaultView.getComputedStyle(this.elementRef.nativeElement);
×
UNCOV
291
        const totalSize = this.type === SplitterType.Horizontal ? computed.getPropertyValue('width') : computed.getPropertyValue('height');
×
UNCOV
292
        return parseFloat(totalSize);
×
293
    }
294

295

296
    /**
297
     * @hidden @internal
298
     * This method inits panes with properties.
299
     */
300
    private initPanes() {
UNCOV
301
        this.panes.forEach(pane => {
×
UNCOV
302
            pane.owner = this;
×
UNCOV
303
            if (this.type === SplitterType.Horizontal) {
×
UNCOV
304
                pane.minWidth = pane.minSize ?? '0';
×
UNCOV
305
                pane.maxWidth = pane.maxSize ?? '100%';
×
306
            } else {
UNCOV
307
                pane.minHeight = pane.minSize ?? '0';
×
UNCOV
308
                pane.maxHeight = pane.maxSize ?? '100%';
×
309
            }
310
        });
UNCOV
311
        this.assignFlexOrder();
×
UNCOV
312
        if (this.panes.filter(x => x.collapsed).length > 0) {
×
313
            // if any panes are collapsed, reset sizes.
UNCOV
314
            this.resetPaneSizes();
×
315
        }
316
    }
317

318
    /**
319
     * @hidden @internal
320
     * This method reset pane sizes.
321
     */
322
    private resetPaneSizes() {
UNCOV
323
        if (this.panes) {
×
324
            // if type is changed runtime, should reset sizes.
UNCOV
325
            this.panes.forEach(x => {
×
UNCOV
326
                x.size = 'auto'
×
UNCOV
327
                x.minWidth = '0';
×
UNCOV
328
                x.maxWidth = '100%';
×
UNCOV
329
                x.minHeight = '0';
×
UNCOV
330
                x.maxHeight = '100%';
×
331
            });
332
        }
333
    }
334

335
    /**
336
     * @hidden @internal
337
     * This method assigns the order of each pane.
338
     */
339
    private assignFlexOrder() {
UNCOV
340
        let k = 0;
×
UNCOV
341
        this.panes.forEach((pane: IgxSplitterPaneComponent) => {
×
UNCOV
342
            pane.order = k;
×
UNCOV
343
            k += 2;
×
344
        });
345
    }
346

347
    /**
348
     * @hidden @internal
349
     * Calculates new sizes for the panes based on move delta and initial sizes
350
     */
351
    private calcNewSizes(delta: number): [number, number] {
UNCOV
352
        const min = parseInt(this.pane.minSize, 10) || 0;
×
UNCOV
353
        const minSibling = parseInt(this.sibling.minSize, 10) || 0;
×
UNCOV
354
        const max = parseInt(this.pane.maxSize, 10) || this.initialPaneSize + this.initialSiblingSize - minSibling;
×
UNCOV
355
        const maxSibling = parseInt(this.sibling.maxSize, 10) || this.initialPaneSize + this.initialSiblingSize - min;
×
356

UNCOV
357
        if (delta < 0) {
×
UNCOV
358
            const maxPossibleDelta = Math.min(
×
359
                max - this.initialPaneSize,
360
                this.initialSiblingSize - minSibling,
361
            )
UNCOV
362
            delta = Math.min(maxPossibleDelta, Math.abs(delta)) * -1;
×
363
        } else {
UNCOV
364
            const maxPossibleDelta = Math.min(
×
365
                this.initialPaneSize - min,
366
                maxSibling - this.initialSiblingSize
367
            )
UNCOV
368
            delta = Math.min(maxPossibleDelta, Math.abs(delta));
×
369
        }
UNCOV
370
        return [this.initialPaneSize - delta, this.initialSiblingSize + delta];
×
371
    }
372
}
373

374
/**
375
 * @hidden @internal
376
 * Represents the draggable bar that visually separates panes and allows for changing their sizes.
377
 */
378
@Component({
379
    selector: 'igx-splitter-bar',
380
    templateUrl: './splitter-bar.component.html',
381
    imports: [IgxDragDirective, IgxDragIgnoreDirective]
382
})
383
export class IgxSplitBarComponent {
3✔
384
    /**
385
     * Set css class to the host element.
386
     */
387
    @HostBinding('class.igx-splitter-bar-host')
UNCOV
388
    public cssClass = 'igx-splitter-bar-host';
×
389

390
     /**
391
     * Sets the visibility of the handle and expanders in the splitter bar.
392
     */
393
    @Input({ transform: booleanAttribute })
394
    public nonCollapsible;
395

396
    /**
397
     * Gets/Sets the orientation.
398
     */
399
    @Input()
UNCOV
400
    public type: SplitterType = SplitterType.Horizontal;
×
401

402
    /**
403
     * Sets/gets the element order.
404
     */
405
    @HostBinding('style.order')
406
    @Input()
407
    public order!: number;
408

409
    /**
410
     * @hidden
411
     * @internal
412
     */
413
    @HostBinding('attr.tabindex')
414
    public get tabindex() {
UNCOV
415
        return this.resizeDisallowed ? null : 0;
×
416
    }
417

418
    /**
419
     * @hidden
420
     * @internal
421
     */
422
    @HostBinding('attr.aria-orientation')
423
    public get orientation() {
UNCOV
424
        return this.type === SplitterType.Horizontal ? 'horizontal' : 'vertical';
×
425
    }
426

427
    /**
428
     * @hidden
429
     * @internal
430
     */
431
    public get cursor() {
UNCOV
432
        if (this.resizeDisallowed) {
×
UNCOV
433
            return '';
×
434
        }
UNCOV
435
        return this.type === SplitterType.Horizontal ? 'col-resize' : 'row-resize';
×
436
    }
437

438
    /**
439
     * Sets/gets the `SplitPaneComponent` associated with the current `SplitBarComponent`.
440
     *
441
     * @memberof SplitBarComponent
442
     */
443
    @Input()
444
    public pane!: IgxSplitterPaneComponent;
445

446
    /**
447
     * Sets/Gets the `SplitPaneComponent` sibling components associated with the current `SplitBarComponent`.
448
     */
449
    @Input()
450
    public siblings!: Array<IgxSplitterPaneComponent>;
451

452
    /**
453
     * An event that is emitted whenever we start dragging the current `SplitBarComponent`.
454
     */
455
    @Output()
UNCOV
456
    public moveStart = new EventEmitter<IgxSplitterPaneComponent>();
×
457

458
    /**
459
     * An event that is emitted while we are dragging the current `SplitBarComponent`.
460
     */
461
    @Output()
UNCOV
462
    public moving = new EventEmitter<number>();
×
463

464
    @Output()
UNCOV
465
    public movingEnd = new EventEmitter<number>();
×
466

467
    /**
468
     * A temporary holder for the pointer coordinates.
469
     */
470
    private startPoint!: number;
471

UNCOV
472
    private interactionKeys = new Set('right down left up arrowright arrowdown arrowleft arrowup'.split(' '));
×
473

474
    /**
475
     * @hidden @internal
476
     */
477
    public get prevButtonHidden() {
UNCOV
478
        return this.siblings[0]?.collapsed && !this.siblings[1]?.collapsed;
×
479
    }
480

481
    /**
482
     * @hidden @internal
483
     */
484
    @HostListener('keydown', ['$event'])
485
    public keyEvent(event: KeyboardEvent) {
UNCOV
486
        const key = event.key.toLowerCase();
×
UNCOV
487
        const ctrl = event.ctrlKey;
×
UNCOV
488
        event.stopPropagation();
×
UNCOV
489
        if (this.interactionKeys.has(key)) {
×
UNCOV
490
            event.preventDefault();
×
491
        }
UNCOV
492
        switch (key) {
×
493
            case 'arrowup':
494
            case 'up':
UNCOV
495
                if (this.type === SplitterType.Vertical) {
×
UNCOV
496
                    if (ctrl) {
×
UNCOV
497
                        this.onCollapsing(false);
×
UNCOV
498
                        break;
×
499
                    }
UNCOV
500
                    if (!this.resizeDisallowed) {
×
UNCOV
501
                        event.preventDefault();
×
UNCOV
502
                        this.moveStart.emit(this.pane);
×
UNCOV
503
                        this.moving.emit(10);
×
504
                    }
505
                }
UNCOV
506
                break;
×
507
            case 'arrowdown':
508
            case 'down':
UNCOV
509
                if (this.type === SplitterType.Vertical) {
×
UNCOV
510
                    if (ctrl) {
×
UNCOV
511
                        this.onCollapsing(true);
×
UNCOV
512
                        break;
×
513
                    }
UNCOV
514
                    if (!this.resizeDisallowed) {
×
UNCOV
515
                        event.preventDefault();
×
UNCOV
516
                        this.moveStart.emit(this.pane);
×
UNCOV
517
                        this.moving.emit(-10);
×
518
                    }
519
                }
UNCOV
520
                break;
×
521
            case 'arrowleft':
522
            case 'left':
UNCOV
523
                if (this.type === SplitterType.Horizontal) {
×
UNCOV
524
                    if (ctrl) {
×
UNCOV
525
                        this.onCollapsing(false);
×
UNCOV
526
                        break;
×
527
                    }
UNCOV
528
                    if (!this.resizeDisallowed) {
×
UNCOV
529
                        event.preventDefault();
×
UNCOV
530
                        this.moveStart.emit(this.pane);
×
UNCOV
531
                        this.moving.emit(10);
×
532
                    }
533
                }
UNCOV
534
                break;
×
535
            case 'arrowright':
536
            case 'right':
UNCOV
537
                if (this.type === SplitterType.Horizontal) {
×
UNCOV
538
                    if (ctrl) {
×
UNCOV
539
                        this.onCollapsing(true);
×
UNCOV
540
                        break;
×
541
                    }
UNCOV
542
                    if (!this.resizeDisallowed) {
×
UNCOV
543
                        event.preventDefault();
×
UNCOV
544
                        this.moveStart.emit(this.pane);
×
UNCOV
545
                        this.moving.emit(-10);
×
546
                    }
547
                }
UNCOV
548
                break;
×
549
            default:
550
                break;
×
551
        }
552
    }
553

554
    /**
555
     * @hidden @internal
556
     */
557
    public get dragDir() {
UNCOV
558
        return this.type === SplitterType.Horizontal ? DragDirection.VERTICAL : DragDirection.HORIZONTAL;
×
559
    }
560

561
    /**
562
     * @hidden @internal
563
     */
564
    public get nextButtonHidden() {
UNCOV
565
        return this.siblings[1]?.collapsed && !this.siblings[0]?.collapsed;
×
566
    }
567

568
    /**
569
     * @hidden @internal
570
     */
571
    public onDragStart(event: IDragStartEventArgs) {
UNCOV
572
        if (this.resizeDisallowed) {
×
UNCOV
573
            event.cancel = true;
×
UNCOV
574
            return;
×
575
        }
576
        this.startPoint = this.type === SplitterType.Horizontal ? event.startX : event.startY;
×
577
        this.moveStart.emit(this.pane);
×
578
    }
579

580
    /**
581
     * @hidden @internal
582
     */
583
    public onDragMove(event: IDragMoveEventArgs) {
584
        const isHorizontal = this.type === SplitterType.Horizontal;
×
585
        const curr = isHorizontal ? event.pageX : event.pageY;
×
586
        const delta = this.startPoint - curr;
×
587
        if (delta !== 0) {
×
588
            this.moving.emit(delta);
×
589
            event.cancel = true;
×
590
            event.owner.element.nativeElement.style.transform = '';
×
591
        }
592
    }
593

594
    public onDragEnd(event: any) {
595
        const isHorizontal = this.type === SplitterType.Horizontal;
×
596
        const curr = isHorizontal ? event.pageX : event.pageY;
×
597
        const delta = this.startPoint - curr;
×
598
        if (delta !== 0) {
×
599
            this.movingEnd.emit(delta);
×
600
        }
601
    }
602

603
    protected get resizeDisallowed() {
UNCOV
604
        const relatedTabs = this.siblings;
×
UNCOV
605
        return !!relatedTabs.find(x => x?.resizable === false || x?.collapsed === true);
×
606
    }
607

608
    /**
609
     * @hidden @internal
610
     */
611
    public onCollapsing(next: boolean) {
UNCOV
612
        const prevSibling = this.siblings[0];
×
UNCOV
613
        const nextSibling = this.siblings[1];
×
614
        let target;
UNCOV
615
        if (next) {
×
616
            // if next is clicked when prev pane is hidden, show prev pane, else hide next pane.
UNCOV
617
            target = prevSibling.collapsed ? prevSibling : nextSibling;
×
618
        } else {
619
            // if prev is clicked when next pane is hidden, show next pane, else hide prev pane.
UNCOV
620
            target = nextSibling.collapsed ? nextSibling : prevSibling;
×
621
        }
UNCOV
622
        target.toggle();
×
623
    }
624
}
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

© 2026 Coveralls, Inc