Files
airport-chengdu-web/src/app/components/toast/toast.service.spec.ts
T
2018-10-26 11:33:25 +08:00

16 lines
368 B
TypeScript

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