Commits
Kristof De Langhe authored 492a31dd107
4 4 | import { By } from '@angular/platform-browser'; |
5 5 | import { URLCombiner } from '../../core/url-combiner/url-combiner'; |
6 6 | import { getBitstreamModuleRoute } from '../../app-routing-paths'; |
7 7 | import { AuthorizationDataService } from '../../core/data/feature-authorization/authorization-data.service'; |
8 8 | import { cold, getTestScheduler } from 'jasmine-marbles'; |
9 9 | import { FeatureID } from '../../core/data/feature-authorization/feature-id'; |
10 10 | import { Item } from '../../core/shared/item.model'; |
11 11 | import { getItemModuleRoute } from '../../item-page/item-page-routing-paths'; |
12 12 | import { RouterLinkDirectiveStub } from '../testing/router-link-directive.stub'; |
13 13 | |
14 - | fdescribe('FileDownloadLinkComponent', () => { |
14 + | describe('FileDownloadLinkComponent', () => { |
15 15 | let component: FileDownloadLinkComponent; |
16 16 | let fixture: ComponentFixture<FileDownloadLinkComponent>; |
17 17 | |
18 18 | let scheduler; |
19 19 | let authorizationService: AuthorizationDataService; |
20 20 | |
21 21 | let bitstream: Bitstream; |
22 22 | let item: Item; |
23 23 | |
24 24 | function init() { |