aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_modals/share-dialog/share-dialog.component.spec.ts
diff options
context:
space:
mode:
authorDanijel Anđelković <adanijel99@gmail.com>2022-06-06 02:45:47 +0200
committerDanijel Anđelković <adanijel99@gmail.com>2022-06-06 02:45:47 +0200
commit09a33e72501affb6d07507e396151f02d16daf9a (patch)
tree573d977f1e7d0130d0287a669e6bbaa516b2106e /frontend/src/app/_modals/share-dialog/share-dialog.component.spec.ts
parent542acf92fd69fea61afbef34f12cd6147f919bc8 (diff)
Dodao deljenje datasetova i modela, dialog za podesavanje opcija za deljenje (isPublic accessibleByLink), sa mogucnoscu kopiranja linka za deljenje. Dodao stranice za prikaz javnih datasetova / modela.
Diffstat (limited to 'frontend/src/app/_modals/share-dialog/share-dialog.component.spec.ts')
-rw-r--r--frontend/src/app/_modals/share-dialog/share-dialog.component.spec.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/src/app/_modals/share-dialog/share-dialog.component.spec.ts b/frontend/src/app/_modals/share-dialog/share-dialog.component.spec.ts
new file mode 100644
index 00000000..51bd4c9a
--- /dev/null
+++ b/frontend/src/app/_modals/share-dialog/share-dialog.component.spec.ts
@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { ShareDialogComponent } from './share-dialog.component';
+
+describe('ShareDialogComponent', () => {
+ let component: ShareDialogComponent;
+ let fixture: ComponentFixture<ShareDialogComponent>;
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ declarations: [ ShareDialogComponent ]
+ })
+ .compileComponents();
+ });
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(ShareDialogComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});