Page MenuHomec4science

margin-field.component.spec.ts
No OneTemporary

File Metadata

Created
Wed, Oct 16, 05:59

margin-field.component.spec.ts

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { FormsModule } from '@angular/forms';
import { MarginFieldComponent } from './margin-field.component';
describe('MarginFieldComponent', () => {
let component: MarginFieldComponent;
let fixture: ComponentFixture<MarginFieldComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [ FormsModule ],
declarations: [ MarginFieldComponent ]
})
.compileComponents();
}));
/*beforeEach(() => {
fixture = TestBed.createComponent(MarginFieldComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});*/
});

Event Timeline