27 lines
659 B
TypeScript
27 lines
659 B
TypeScript
import {ComponentFixture, TestBed, waitForAsync} from '@angular/core/testing';
|
|
|
|
import {RemoteComponent} from './remote.component';
|
|
|
|
describe('RemoteComponent', () => {
|
|
let component: RemoteComponent;
|
|
let fixture: ComponentFixture<RemoteComponent>;
|
|
|
|
beforeEach(
|
|
waitForAsync(() => {
|
|
void TestBed.configureTestingModule({
|
|
declarations: [RemoteComponent],
|
|
}).compileComponents();
|
|
}),
|
|
);
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(RemoteComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
void expect(component).toBeTruthy();
|
|
});
|
|
});
|