Update boss fight

This commit is contained in:
Chris Chen
2024-03-29 08:04:07 -07:00
parent 6a031ca478
commit d486fe9594
55 changed files with 1809 additions and 799 deletions
@@ -0,0 +1,25 @@
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();
});
});