13 lines
363 B
TypeScript
Raw Normal View History

2019-11-25 16:48:06 +09:00
import { TestBed } from '@angular/core/testing';
import { BottomSheetService } from './bottom-sheet.service';
describe('ui::BottomSheetService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
const service: BottomSheetService = TestBed.get(BottomSheetService);
expect(service).toBeTruthy();
});
});