h-usersite/angular/src/app/components/purchase-info/purchase-info.component.spec.ts
gofnnp 1a503b3163 dev #13888
сделал возможность посмотреть подробности по покупкам
2023-03-21 22:42:24 +04:00

24 lines
642 B
TypeScript

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