summaryrefslogtreecommitdiffstats
path: root/components/datalake-handler/admin/src/src/app/views/topics/topic-list/topic-list.component.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'components/datalake-handler/admin/src/src/app/views/topics/topic-list/topic-list.component.spec.ts')
-rw-r--r--components/datalake-handler/admin/src/src/app/views/topics/topic-list/topic-list.component.spec.ts24
1 files changed, 24 insertions, 0 deletions
diff --git a/components/datalake-handler/admin/src/src/app/views/topics/topic-list/topic-list.component.spec.ts b/components/datalake-handler/admin/src/src/app/views/topics/topic-list/topic-list.component.spec.ts
new file mode 100644
index 00000000..531afbb7
--- /dev/null
+++ b/components/datalake-handler/admin/src/src/app/views/topics/topic-list/topic-list.component.spec.ts
@@ -0,0 +1,24 @@
+import { async, ComponentFixture, TestBed } from "@angular/core/testing";
+
+import { TopicListComponent } from "./topic-list.component";
+
+describe("TopicListComponent", () => {
+ let component: TopicListComponent;
+ let fixture: ComponentFixture<TopicListComponent>;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [TopicListComponent]
+ }).compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(TopicListComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it("should create", () => {
+ expect(component).toBeTruthy();
+ });
+});