blob: f3a8388b66182d250f8059cacaa87b6c28b0029f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { TestBed } from '@angular/core/testing';
import { RecipePassService } from './recipe-pass.service';
describe('RecipePassService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
const service: RecipePassService = TestBed.get(RecipePassService);
expect(service).toBeTruthy();
});
});
|