22 lines
573 B
TypeScript
22 lines
573 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { ProductsComponent } from './products.component';
|
|
|
|
describe('ProductsComponent', () => {
|
|
let component: ProductsComponent;
|
|
let fixture: ComponentFixture<ProductsComponent>;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ProductsComponent]
|
|
});
|
|
fixture = TestBed.createComponent(ProductsComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|