39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
import {ComponentFixture, TestBed} from '@angular/core/testing';
|
|
import {ShareDialogComponent} from './share-dialog.component';
|
|
import {MAT_DIALOG_DATA} from '@angular/material/dialog';
|
|
|
|
describe('ShareDialogComponent', () => {
|
|
let component: ShareDialogComponent;
|
|
let fixture: ComponentFixture<ShareDialogComponent>;
|
|
type ShareDialogComponentInternals = ShareDialogComponent & {
|
|
generateQrCode: () => Promise<string>;
|
|
};
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [ShareDialogComponent],
|
|
providers: [
|
|
{
|
|
provide: MAT_DIALOG_DATA,
|
|
useValue: {
|
|
url: 'https://example.com/guest/1',
|
|
show: {
|
|
showType: 'service-worship',
|
|
date: {toDate: () => new Date('2026-03-20T00:00:00Z')},
|
|
},
|
|
},
|
|
},
|
|
],
|
|
}).compileComponents();
|
|
|
|
fixture = TestBed.createComponent(ShareDialogComponent);
|
|
component = fixture.componentInstance;
|
|
spyOn(component as ShareDialogComponentInternals, 'generateQrCode').and.resolveTo('data:image/jpeg;base64,test');
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
void expect(component).toBeTruthy();
|
|
});
|
|
});
|