migrate alert-box in lib, up route airwatch demo layout

This commit is contained in:
Tykayn 2025-08-11 11:56:52 +02:00 committed by tykayn
parent fe63fec58f
commit d0b5ad10f6
15 changed files with 174 additions and 9 deletions

View file

@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { Copy } from './copy';
describe('Copy', () => {
let component: Copy;
let fixture: ComponentFixture<Copy>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [Copy]
})
.compileComponents();
fixture = TestBed.createComponent(Copy);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});