feat(releases-page): Added releases page with information located inside current changelog

This commit is contained in:
Erik Tiekstra
2021-05-18 11:26:39 +02:00
parent 482357b118
commit 9dd04ca565
13 changed files with 280 additions and 6 deletions
@@ -0,0 +1,27 @@
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { ReleasesComponent } from './releases.component';
describe('ReleasesComponent', () => {
let component: ReleasesComponent;
let fixture: ComponentFixture<ReleasesComponent>;
beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
schemas: [CUSTOM_ELEMENTS_SCHEMA],
declarations: [ReleasesComponent],
}).compileComponents();
})
);
beforeEach(() => {
fixture = TestBed.createComponent(ReleasesComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});