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