Feautre: Recipe export to xlsx Chore: Python 11 style type annotations Chore: Moved to sqlalchemy 2.0 Chore: Minimum python is 3.11 Fix: Fix nullability of a lot of fields in the database.
18 lines
516 B
TypeScript
18 lines
516 B
TypeScript
import { HttpClientModule } from '@angular/common/http';
|
|
import { inject, TestBed } from '@angular/core/testing';
|
|
|
|
import { RecipeTemplateService } from './recipe-template.service';
|
|
|
|
describe('RecipeTemplateService', () => {
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [HttpClientModule],
|
|
providers: [RecipeTemplateService],
|
|
});
|
|
});
|
|
|
|
it('should be created', inject([RecipeTemplateService], (service: RecipeTemplateService) => {
|
|
expect(service).toBeTruthy();
|
|
}));
|
|
});
|