Files
ChurchAngular/src/app/games/massive-darkness2/mobs/mob-stand-info/mob-stand-info.component.spec.ts
T
2024-03-29 08:04:07 -07:00

26 lines
670 B
TypeScript

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