converter/src/app/native-library-wrapper.serv...

16 lines
460 B
TypeScript

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