Skip to content

Commit

Permalink
Add playground. Test pages CI
Browse files Browse the repository at this point in the history
  • Loading branch information
DraTeots committed May 30, 2024
1 parent 19c533b commit d1dc54a
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 0 deletions.
4 changes: 4 additions & 0 deletions firebird-ng/src/app/app.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@ export const routes: Routes = [
path: 'display',
loadComponent: () => import('./main-display/main-display.component').then(m => m.MainDisplayComponent)
},
{
path: 'playground',
loadComponent: () => import('./playground/playground.component').then(m => m.PlaygroundComponent)
},
];
1 change: 1 addition & 0 deletions firebird-ng/src/app/playground/playground.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>playground works!</p>
Empty file.
23 changes: 23 additions & 0 deletions firebird-ng/src/app/playground/playground.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { PlaygroundComponent } from './playground.component';

describe('PlaygroundComponent', () => {
let component: PlaygroundComponent;
let fixture: ComponentFixture<PlaygroundComponent>;

beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [PlaygroundComponent]
})
.compileComponents();

fixture = TestBed.createComponent(PlaygroundComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
12 changes: 12 additions & 0 deletions firebird-ng/src/app/playground/playground.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-playground',
standalone: true,
imports: [],
templateUrl: './playground.component.html',
styleUrl: './playground.component.scss'
})
export class PlaygroundComponent {

}

0 comments on commit d1dc54a

Please sign in to comment.