diff options
| author | Danijel Anđelković <adanijel99@gmail.com> | 2022-04-17 21:56:08 +0200 |
|---|---|---|
| committer | Danijel Anđelković <adanijel99@gmail.com> | 2022-04-17 21:56:08 +0200 |
| commit | 87b1858bfb9d53f9932767d48e1b21bdc7d536fb (patch) | |
| tree | 2cc2c121a6e648fd2cbb1094958ead2c1722de50 /frontend/src/app/_pages/playground/playground.component.spec.ts | |
| parent | 57f235fc814473f5be947e2b31e7d57f83fcbdd8 (diff) | |
Promenio komponentu za iscrtavanje reaktivne pozadine tako da je transparentna, dodao komponentu za iscrtavanje gradijentne pozadine.
Ispravio razne BUG-ove vezane za reaktivnu pozadinu, i promenio stil.
Diffstat (limited to 'frontend/src/app/_pages/playground/playground.component.spec.ts')
| -rw-r--r-- | frontend/src/app/_pages/playground/playground.component.spec.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/src/app/_pages/playground/playground.component.spec.ts b/frontend/src/app/_pages/playground/playground.component.spec.ts new file mode 100644 index 00000000..bf66b27e --- /dev/null +++ b/frontend/src/app/_pages/playground/playground.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { PlaygroundComponent } from './playground.component'; + +describe('PlaygroundComponent', () => { + let component: PlaygroundComponent; + let fixture: ComponentFixture<PlaygroundComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ PlaygroundComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(PlaygroundComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); |
