Files
enerport-web-app/src/app/pages/industry-manager/industry-manager.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
592 B
TypeScript

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