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