All files / src/app/shared/components/logout-btn logout-btn.component.ts

91.66% Statements 11/12
100% Branches 0/0
66.66% Functions 2/3
100% Lines 10/10

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 283x 3x 3x 3x                     3x 6x 6x     6x     4x     6x    
import { CommonModule } from "@angular/common";
import { Component, OnInit } from "@angular/core";
import { TranslateModule } from "@ngx-translate/core";
import { LoginService } from "../../login/login.service";
 
@Component({
    selector: "app-logout-btn",
    imports: [
        CommonModule,
        TranslateModule,
    ],
    standalone: true,
    templateUrl: "./logout-btn.component.html",
})
export class LogoutBtnComponent implements OnInit {
    constructor (private readonly ls: LoginService) {
        ls.init();
    }
 
    isLoggedIn = false;
 
    ngOnInit (): void {
        this.isLoggedIn = this.ls.isLoggedIn();
    }
 
    logout = () => this.ls.logout();
}