You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
awesome/src/app/medications/medications.component.spec.ts

30 lines
1001 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { FormsModule } from '@angular/forms';
import { NoopAnimationsModule } from '@angular/platform-browser/animations';
import { IgxListModule, IgxButtonModule, IgxRippleModule, IgxIconModule } from 'igniteui-angular';
import { MedicationsComponent } from './medications.component';
describe('MedicationsComponent', () => {
let component: MedicationsComponent;
let fixture: ComponentFixture<MedicationsComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ MedicationsComponent ],
imports: [ NoopAnimationsModule, FormsModule, IgxListModule, IgxButtonModule, IgxRippleModule, IgxIconModule ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(MedicationsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});