fix: lint errors

pull/2172/head
mehmet-erim 6 years ago
parent 7c0710b84f
commit 730a4cb910

@ -2,7 +2,7 @@ import { Component } from '@angular/core';
import { OAuthService } from 'angular-oauth2-oidc';
@Component({
selector: 'abp-home',
selector: 'app-home',
templateUrl: './home.component.html',
})
export class HomeComponent {

@ -6,7 +6,7 @@ describe('InputEventDebounceDirective', () => {
let spectator: SpectatorDirective<InputEventDebounceDirective>;
let directive: InputEventDebounceDirective;
let input: HTMLInputElement;
let inputEventFn = jest.fn(() => {});
const inputEventFn = jest.fn(() => {});
const createDirective = createDirectiveFactory({
directive: InputEventDebounceDirective,

@ -5,8 +5,8 @@ describe('ClickEventStopPropagationDirective', () => {
let spectator: SpectatorDirective<ClickEventStopPropagationDirective>;
let directive: ClickEventStopPropagationDirective;
let link: HTMLAnchorElement;
let childClickEventFn = jest.fn(() => null);
let parentClickEventFn = jest.fn(() => null);
const childClickEventFn = jest.fn(() => null);
const parentClickEventFn = jest.fn(() => null);
const createDirective = createDirectiveFactory({
directive: ClickEventStopPropagationDirective,
});

Loading…
Cancel
Save