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