13 lines
352 B
TypeScript
13 lines
352 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { ClipboardService } from './clipboard.service';
|
|
|
|
describe('ui::ClipboardService', () => {
|
|
beforeEach(() => TestBed.configureTestingModule({}));
|
|
|
|
it('should be created', () => {
|
|
const service: ClipboardService = TestBed.get(ClipboardService);
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|