陈鹏飞
4 years ago
7 changed files with 60 additions and 4 deletions
@ -0,0 +1 @@
|
||||
<p>计划更新</p> |
@ -0,0 +1,25 @@
|
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
||||
|
||||
import { ScheduledUpdatesComponent } from './scheduled-updates.component'; |
||||
|
||||
describe('ScheduledUpdatesComponent', () => { |
||||
let component: ScheduledUpdatesComponent; |
||||
let fixture: ComponentFixture<ScheduledUpdatesComponent>; |
||||
|
||||
beforeEach(async(() => { |
||||
TestBed.configureTestingModule({ |
||||
declarations: [ ScheduledUpdatesComponent ] |
||||
}) |
||||
.compileComponents(); |
||||
})); |
||||
|
||||
beforeEach(() => { |
||||
fixture = TestBed.createComponent(ScheduledUpdatesComponent); |
||||
component = fixture.componentInstance; |
||||
fixture.detectChanges(); |
||||
}); |
||||
|
||||
it('should create', () => { |
||||
expect(component).toBeTruthy(); |
||||
}); |
||||
}); |
@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core'; |
||||
|
||||
@Component({ |
||||
selector: 'app-scheduled-updates', |
||||
templateUrl: './scheduled-updates.component.html', |
||||
styleUrls: ['./scheduled-updates.component.scss'] |
||||
}) |
||||
export class ScheduledUpdatesComponent implements OnInit { |
||||
|
||||
constructor() { } |
||||
|
||||
ngOnInit(): void { |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue