24 lines
683 B
TypeScript
24 lines
683 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { CreateCalendarRuleComponent } from './create-calendar-rule.component';
|
|
|
|
describe('CreateCalendarRuleComponent', () => {
|
|
let component: CreateCalendarRuleComponent;
|
|
let fixture: ComponentFixture<CreateCalendarRuleComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [CreateCalendarRuleComponent]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(CreateCalendarRuleComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|