Files
airport-chengdu-web/src/app/components/toast/toast.service.spec.ts
T

16 lines
368 B
TypeScript
Raw Normal View History

2018-10-26 11:33:25 +08:00
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();
}));
});