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

IgniteUI / igniteui-angular / 23354069329

20 Mar 2026 05:11PM UTC coverage: 9.846% (-79.6%) from 89.462%
23354069329

Pull #17071

github

web-flow
Merge 742ad5a5c into 0018afe92
Pull Request #17071: fix(IgxGrid): Do not apply width constraint to groups.

905 of 16404 branches covered (5.52%)

Branch coverage included in aggregate %.

1 of 3 new or added lines in 1 file covered. (33.33%)

24265 existing lines in 328 files now uncovered.

3714 of 30509 relevant lines covered (12.17%)

6.21 hits per line

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

2.54
/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) {
×
UNCOV
247
            siblingSize = this.getTotalSize() - paneSize;
×
UNCOV
248
        } else if (paneSize + siblingSize > this.getTotalSize() && delta > 0) {
×
249
            paneSize = this.getTotalSize() - siblingSize;
×
250
        }
251

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

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

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

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

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

293

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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