5 changed files with 35 additions and 1 deletions
@ -0,0 +1 @@ |
|||||
|
<p>new-season-dialog works!</p> |
||||
@ -0,0 +1,21 @@ |
|||||
|
import { ComponentFixture, TestBed } from '@angular/core/testing'; |
||||
|
|
||||
|
import { NewSeasonDialogComponent } from './new-season-dialog.component'; |
||||
|
|
||||
|
describe('NewSeasonDialogComponent', () => { |
||||
|
let component: NewSeasonDialogComponent; |
||||
|
let fixture: ComponentFixture<NewSeasonDialogComponent>; |
||||
|
|
||||
|
beforeEach(() => { |
||||
|
TestBed.configureTestingModule({ |
||||
|
declarations: [NewSeasonDialogComponent] |
||||
|
}); |
||||
|
fixture = TestBed.createComponent(NewSeasonDialogComponent); |
||||
|
component = fixture.componentInstance; |
||||
|
fixture.detectChanges(); |
||||
|
}); |
||||
|
|
||||
|
it('should create', () => { |
||||
|
expect(component).toBeTruthy(); |
||||
|
}); |
||||
|
}); |
||||
@ -0,0 +1,10 @@ |
|||||
|
import { Component } from '@angular/core'; |
||||
|
|
||||
|
@Component({ |
||||
|
selector: 'app-new-season-dialog', |
||||
|
templateUrl: './new-season-dialog.component.html', |
||||
|
styleUrls: ['./new-season-dialog.component.less'] |
||||
|
}) |
||||
|
export class NewSeasonDialogComponent { |
||||
|
|
||||
|
} |
||||
Loading…
Reference in new issue