member_webapp/@overflow/notification/service/notification.service.spec.ts
crusader d59d9379f9 ing
2018-05-24 15:44:13 +09:00

16 lines
410 B
TypeScript

import { TestBed, inject } from '@angular/core/testing';
import { NotificationService } from './notification.service';
describe('NotificationService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [NotificationService]
});
});
it('should be created', inject([NotificationService], (service: NotificationService) => {
expect(service).toBeTruthy();
}));
});