File size: 352 Bytes
08eaca3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import { TestBed } from '@angular/core/testing';
import { EmailService } from './email.service';
describe('EmailService', () => {
let service: EmailService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(EmailService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});
|