ChurchAngular/src/app/admin/lines/line-messaging-account-editor/line-messaging-account-editor.component.spec.ts
2022-09-30 10:53:48 -07:00

26 lines
769 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { LineMessagingAccountEditorComponent } from './line-messaging-account-editor.component';
describe('LineMessagingAccountEditorComponent', () => {
let component: LineMessagingAccountEditorComponent;
let fixture: ComponentFixture<LineMessagingAccountEditorComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ LineMessagingAccountEditorComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(LineMessagingAccountEditorComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});