This commit is contained in:
phoenix
2024-12-26 23:12:28 +08:00
parent 4d81f04fec
commit 69fd60ab0a
11 changed files with 219 additions and 11 deletions
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { KillProcessComponent } from './kill-process.component';
describe('KillProcessComponent', () => {
let component: KillProcessComponent;
let fixture: ComponentFixture<KillProcessComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [KillProcessComponent]
})
.compileComponents();
fixture = TestBed.createComponent(KillProcessComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});