23 lines
541 B
TypeScript
23 lines
541 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { Projects } from './projects';
|
|
|
|
describe('Projects', () => {
|
|
let component: Projects;
|
|
let fixture: ComponentFixture<Projects>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [Projects],
|
|
}).compileComponents();
|
|
|
|
fixture = TestBed.createComponent(Projects);
|
|
component = fixture.componentInstance;
|
|
await fixture.whenStable();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|