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.
RTL/src/app/shared/components/node-config/node-config.component.spec.ts

44 lines
1.2 KiB
TypeScript

import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing';
import { StoreModule } from '@ngrx/store';
import { RTLReducer } from '../../../store/rtl.reducers';
import { SharedModule } from '../../shared.module';
import { NodeConfigComponent } from './node-config.component';
describe('NodeConfigComponent', () => {
let component: NodeConfigComponent;
let fixture: ComponentFixture<NodeConfigComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [NodeConfigComponent],
imports: [
SharedModule,
RouterTestingModule,
StoreModule.forRoot(RTLReducer, {
runtimeChecks: {
strictStateImmutability: false,
strictActionImmutability: false
}
})
]
}).
compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(NodeConfigComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
afterEach(() => {
TestBed.resetTestingModule();
});
});