import { ComponentFixture, TestBed } from '@angular/core/testing'; import { RulesComponent } from './rules.component'; describe('RulesComponent', () => { let component: RulesComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ RulesComponent ] }) .compileComponents(); fixture = TestBed.createComponent(RulesComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });