forked from teocomi/BCFier
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ed3b582
commit 86f00e8
Showing
6 changed files
with
29 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
src/ipa-bcfier-ui/src/app/directives/topic-preview-image.directive.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
import { ElementRef } from '@angular/core'; | ||
import { TopicPreviewImageDirective } from './topic-preview-image.directive'; | ||
|
||
describe('TopicPreviewImageDirective', () => { | ||
it('should create an instance', () => { | ||
const directive = new TopicPreviewImageDirective(); | ||
const el = new ElementRef<HTMLDivElement>(document.createElement('div')); | ||
const directive = new TopicPreviewImageDirective(el); | ||
expect(directive).toBeTruthy(); | ||
}); | ||
}); |
4 changes: 3 additions & 1 deletion
4
src/ipa-bcfier-ui/src/app/directives/viewpoint-image.directive.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
import { ElementRef } from '@angular/core'; | ||
import { ViewpointImageDirective } from './viewpoint-image.directive'; | ||
|
||
describe('ViewpointImageDirective', () => { | ||
it('should create an instance', () => { | ||
const directive = new ViewpointImageDirective(); | ||
const el = new ElementRef<HTMLDivElement>(document.createElement('div')); | ||
const directive = new ViewpointImageDirective(el); | ||
expect(directive).toBeTruthy(); | ||
}); | ||
}); |