Chore: environment file replacement stopped. Chore: All components are now standalone and removed all modules Chore: App routing is now in app.routes and similarly for all submodules Chore: Http interceptors are now functional and split refresh interceptor into a separate one.
23 lines
637 B
TypeScript
23 lines
637 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { RecipeDetailComponent } from './recipe-detail.component';
|
|
|
|
describe('ProductGroupDetailComponent', () => {
|
|
let component: RecipeDetailComponent;
|
|
let fixture: ComponentFixture<RecipeDetailComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [RecipeDetailComponent],
|
|
}).compileComponents();
|
|
|
|
fixture = TestBed.createComponent(RecipeDetailComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|