remove spec files

This commit is contained in:
Joel Wetzell
2026-02-13 20:30:32 -06:00
parent 0bad241845
commit 90b7e06845
4 changed files with 0 additions and 89 deletions
-23
View File
@@ -1,23 +0,0 @@
import { TestBed } from '@angular/core/testing';
import { App } from './app';
describe('App', () => {
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [App],
}).compileComponents();
});
it('should create the app', () => {
const fixture = TestBed.createComponent(App);
const app = fixture.componentInstance;
expect(app).toBeTruthy();
});
it('should render title', async () => {
const fixture = TestBed.createComponent(App);
await fixture.whenStable();
const compiled = fixture.nativeElement as HTMLElement;
expect(compiled.querySelector('h1')?.textContent).toContain('Hello, webui');
});
});
-22
View File
@@ -1,22 +0,0 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ConfigComponent } from './config.component';
describe('ConfigComponent', () => {
let component: ConfigComponent;
let fixture: ComponentFixture<ConfigComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [ConfigComponent],
}).compileComponents();
fixture = TestBed.createComponent(ConfigComponent);
component = fixture.componentInstance;
await fixture.whenStable();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
-22
View File
@@ -1,22 +0,0 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ModuleComponent } from './module.component';
describe('ModuleComponent', () => {
let component: ModuleComponent;
let fixture: ComponentFixture<ModuleComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [ModuleComponent],
}).compileComponents();
fixture = TestBed.createComponent(ModuleComponent);
component = fixture.componentInstance;
await fixture.whenStable();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
-22
View File
@@ -1,22 +0,0 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { RouteComponent } from './route.component';
describe('RouteComponent', () => {
let component: RouteComponent;
let fixture: ComponentFixture<RouteComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [RouteComponent],
}).compileComponents();
fixture = TestBed.createComponent(RouteComponent);
component = fixture.componentInstance;
await fixture.whenStable();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});