diff options
author | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-27 05:09:30 +0200 |
---|---|---|
committer | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-27 05:09:30 +0200 |
commit | 982a04c28dcb401fa722cb48976379a1cf6298d8 (patch) | |
tree | b1e249413245400460a005a6fc001240abed0099 /frontend/src/app/_elements/reactive-background/reactive-background.component.spec.ts | |
parent | 080163344ae2e8dd89fccec12cd0487decf815b5 (diff) |
Dodao komponentu za iscrtavanje i animiranje pozadine.
Diffstat (limited to 'frontend/src/app/_elements/reactive-background/reactive-background.component.spec.ts')
-rw-r--r-- | frontend/src/app/_elements/reactive-background/reactive-background.component.spec.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/src/app/_elements/reactive-background/reactive-background.component.spec.ts b/frontend/src/app/_elements/reactive-background/reactive-background.component.spec.ts new file mode 100644 index 00000000..441f4b11 --- /dev/null +++ b/frontend/src/app/_elements/reactive-background/reactive-background.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { ReactiveBackgroundComponent } from './reactive-background.component'; + +describe('ReactiveBackgroundComponent', () => { + let component: ReactiveBackgroundComponent; + let fixture: ComponentFixture<ReactiveBackgroundComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ ReactiveBackgroundComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(ReactiveBackgroundComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); |