Files
perfdb/pdb-js/src/app/dashboard-page/new-dashboard/new-dashboard.component.spec.ts
Andreas Huber 08a481b5ba step 1 - convert al lcomponents, directives and pipes to standalone
see https://v17.angular.io/guide/standalone-migration
I executed:
ng g @angular/core:standalone
and selected "Convert all components, directives and pipes to standalone"
2024-10-13 09:55:07 +02:00

24 lines
629 B
TypeScript

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