zgo/src/app/receipt-qr/receipt-qr.component.spec.ts

26 lines
648 B
TypeScript

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