mirror of
https://github.com/danielvici/tool-website.git
synced 2026-01-17 01:21:25 +00:00
add: changelog; change: coming soon, Styling, navbar styling
This commit is contained in:
23
src/app/sites/navbar/changelog/changelog.spec.ts
Normal file
23
src/app/sites/navbar/changelog/changelog.spec.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Changelog } from './changelog';
|
||||
|
||||
describe('Changelog', () => {
|
||||
let component: Changelog;
|
||||
let fixture: ComponentFixture<Changelog>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Changelog]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Changelog);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user