add redux in csc

This commit is contained in:
Tykayn 2025-08-08 11:31:27 +02:00 committed by tykayn
parent a89007a81b
commit 3534919502
14 changed files with 277 additions and 12 deletions

View file

@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { AlertBox } from './alert-box';
describe('AlertBox', () => {
let component: AlertBox;
let fixture: ComponentFixture<AlertBox>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [AlertBox]
})
.compileComponents();
fixture = TestBed.createComponent(AlertBox);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});