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