Skip to content
Snippets Groups Projects
Commit f367ef4f authored by Kawtar Laariche's avatar Kawtar Laariche
Browse files

#19: add view downloads page component

parent 87043f99
No related branches found
No related tags found
No related merge requests found
<p>view-downloads-page works!</p>
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ViewDownloadsPageComponent } from './view-downloads-page.component';
describe('ViewDownloadsPageComponent', () => {
let component: ViewDownloadsPageComponent;
let fixture: ComponentFixture<ViewDownloadsPageComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [ViewDownloadsPageComponent]
})
.compileComponents();
fixture = TestBed.createComponent(ViewDownloadsPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';
@Component({
selector: 'gp-view-downloads-page',
standalone: true,
imports: [CommonModule],
templateUrl: './view-downloads-page.component.html',
styleUrl: './view-downloads-page.component.scss'
})
export class ViewDownloadsPageComponent {
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment