Вот мой компонент для реализации swUpdate
:
public thereIsUpdate: boolean;
constructor(public swUpdate: SwUpdate) {
this.checkForUpdates();
}
checkForUpdates() {
this.swUpdate.checkForUpdate().then(() => {
this.swUpdate.available.subscribe(swEvt => {
// an update is available
this.thereIsUpdate = true;
});
});
}
, а вот мой модульное тестирование:
class MockSwUpdate {
available = new Subject<{ available: { hash: string } }>().asObservable();
activated = new Subject<{ current: { hash: string } }>().asObservable();
public checkForUpdate(): Promise<void> {
console.log('This is not working');
return new Promise((resolve) => resolve());
}
public activateUpdate(): Promise<void> {
return new Promise((resolve) => resolve());
}
constructor(public isEnabled: boolean) {
}
}
class MockApplicationRef {
isStable = new Subject<boolean>();
}
describe('xComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [
xComponent
],
imports: [
RouterTestingModule,
ServiceWorkerModule.register('', {enabled: false})
],
providers: [
{provide: SwUpdate, useValue: MockSwUpdate},
{provide: ApplicationRef, useClass: MockApplicationRef}
]
}).compileComponents();
}));
}
Моя проблема не в том, чтобы выполнить «макет»"для swUpdate
, как-то это не работает.
Каким-то образом SwUpdate
не высмеивается, даже если я его указал.
Когда я запускаю ng test
, этопоказывая эту ошибку:
Uncaught TypeError: this.swUpdate.checkForUpdate is not a function thrown
TypeError: this.swUpdate.checkForUpdate is not a function
Обратите внимание, что: макет не работает только для SwUpdate
.