spellcard.component.spec.ts 614 B

12345678910111213141516171819202122
  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { SpellcardComponent } from './spellcard.component';
  3. describe('SpellcardComponent', () => {
  4. let component: SpellcardComponent;
  5. let fixture: ComponentFixture<SpellcardComponent>;
  6. beforeEach(async () => {
  7. await TestBed.configureTestingModule({
  8. declarations: [SpellcardComponent],
  9. }).compileComponents();
  10. fixture = TestBed.createComponent(SpellcardComponent);
  11. component = fixture.componentInstance;
  12. fixture.detectChanges();
  13. });
  14. it('should create', () => {
  15. expect(component).toBeTruthy();
  16. });
  17. });