Files
enerport-web-app/src/app/pages/organizations/organizations.spec.ts
Murat Özkorkmaz e901aefbf5 Several fixes
- added organizations
- added industries
- added logo in 2 colors for light and dark theme
- improved authorization to allow multi tenancy
2025-11-13 19:56:50 +01:00

24 lines
577 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { Organizations } from './organizations';
describe('Organizations', () => {
let component: Organizations;
let fixture: ComponentFixture<Organizations>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [Organizations]
})
.compileComponents();
fixture = TestBed.createComponent(Organizations);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});