24 lines
631 B
TypeScript
24 lines
631 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { ToogleThemeComponent } from './toogle-theme.component';
|
|
|
|
describe('ToogleThemeComponent', () => {
|
|
let component: ToogleThemeComponent;
|
|
let fixture: ComponentFixture<ToogleThemeComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [ToogleThemeComponent]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(ToogleThemeComponent);
|
|
component = fixture.componentInstance;
|
|
await fixture.whenStable();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|