Skip to content

Commit

Permalink
feat(app): add more options to embed menu
Browse files Browse the repository at this point in the history
  • Loading branch information
9inpachi committed Apr 28, 2021
1 parent cc9590d commit 575d29a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
<div id="embedMenuInner">
<app-dark-theme></app-dark-theme>
<app-auto-rotate></app-auto-rotate>
<app-main-view-toggle></app-main-view-toggle>
<app-animate-event></app-animate-event>
<app-animate-camera></app-animate-camera>
<app-experiment-link></app-experiment-link>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,8 @@ describe('ExperimentLinkComponent', () => {
fixture.detectChanges();
});

it('should create', () => {
it('should create and initialize experiment link', () => {
expect(component).toBeTruthy();
});

it('should initialize experiment link', () => {
expect((component as any).experimentLink).toBeUndefined();
component.ngOnInit();
expect((component as any).experimentLink).toBeTruthy();
});

Expand Down

0 comments on commit 575d29a

Please sign in to comment.