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

worktile / slate-angular / 9a41e977-85ac-413a-9c4b-a9ac0b00358a

28 May 2024 03:35AM UTC coverage: 46.748% (-0.006%) from 46.754%
9a41e977-85ac-413a-9c4b-a9ac0b00358a

push

circleci

pubuzhixing8
build: release 17.2.0

406 of 1083 branches covered (37.49%)

Branch coverage included in aggregate %.

1017 of 1961 relevant lines covered (51.86%)

44.65 hits per line

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

40.0
/packages/src/components/text/void-text.component.ts
1
import { Component, ChangeDetectionStrategy, OnInit, OnChanges } from '@angular/core';
2
import { BaseTextComponent } from '../../view/base';
3

4
@Component({
5
    selector: 'span[slateVoidText]',
6
    template: ``,
7
    changeDetection: ChangeDetectionStrategy.OnPush,
8
    host: {
9
        'data-slate-spacer': 'true',
10
        class: 'slate-spacer',
11
        'data-slate-node': 'text'
12
    },
13
    standalone: true
14
})
15
export class SlateVoidText extends BaseTextComponent implements OnInit, OnChanges {
1✔
16
    ngOnInit() {
17
        super.ngOnInit();
1✔
18
    }
19

20
    ngOnChanges() {
21
        if (!this.initialized) {
×
22
            return;
×
23
        }
24
    }
25
}
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