You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
358 B
TypeScript
12 lines
358 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { AutoConnectService } from './auto-connect.service';
|
|
|
|
describe('AutoConnectService', () => {
|
|
beforeEach(() => TestBed.configureTestingModule({}));
|
|
|
|
it('should be created', () => {
|
|
const service: AutoConnectService = TestBed.get(AutoConnectService);
|
|
expect(service).toBeTruthy();
|
|
});
|
|
}); |