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/appointments/appointments.component.spec.ts

30 lines
1.1 KiB
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, IgxAvatarModule, IgxToggleModule, IgxDialogModule } from 'igniteui-angular';
import { AppointmentsComponent } from './appointments.component';
describe('AppointmentsComponent', () => {
let component: AppointmentsComponent;
let fixture: ComponentFixture<AppointmentsComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ AppointmentsComponent ],
imports: [ NoopAnimationsModule, FormsModule, IgxListModule, IgxButtonModule, IgxRippleModule, IgxIconModule, IgxAvatarModule, IgxToggleModule, IgxDialogModule ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(AppointmentsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});