Squashed commit of the following: commit 1aab96d7f243c77adbd806196f76b931f4445976 Author: Erik Tiekstra <erik.tiekstra@arbetsformedlingen.se> Date: Thu Oct 28 11:38:05 2021 +0200 Added digi-link component to ui lib
27 lines
785 B
TypeScript
27 lines
785 B
TypeScript
/* tslint:disable:no-unused-variable */
|
|
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { LinkButtonComponent } from './link-button.component';
|
|
|
|
describe('LinkButtonComponent', () => {
|
|
let component: LinkButtonComponent;
|
|
let fixture: ComponentFixture<LinkButtonComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [LinkButtonComponent],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
}).compileComponents();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(LinkButtonComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|