13 lines
363 B
TypeScript
13 lines
363 B
TypeScript
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();
|
|
});
|
|
});
|