Skip to content

Commit

Permalink
Create teret.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
tzurielweisberg authored Aug 6, 2023
1 parent 61805d3 commit 4871ea7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions teret.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
it('should update iframe src', () => {
component.onboardingStatus$ = of(OnboardingStatus.NotStarted);
component.isLoading = false;
fixture.detectChanges();
const videoIframe = () => fixture.debugElement.query(By.css('.test-video-iframe')).nativeElement;
expect(videoIframe().src).toBe(trialPageInformation.videoLink);
});

0 comments on commit 4871ea7

Please sign in to comment.