dnet-applications/frontends/dnet-is-application/src/app/resources/resources.component.spec.ts

24 lines
620 B
TypeScript

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