- added organizations - added industries - added logo in 2 colors for light and dark theme - improved authorization to allow multi tenancy
24 lines
592 B
TypeScript
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();
|
|
});
|
|
});
|