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