Merge in TEA/mina-sidor-fa-web from feature/TV-851-digi-ng-layout-expansion-panel to develop
Squashed commit of the following:
commit 10b046bf603e1c5a79dd5c1129b2cdcddfe09424
Author: Daniel Appelgren <daniel.appelgren@arbetsformedlingen.se>
Date: Tue Dec 7 09:18:35 2021 +0100
Fix PR comments
commit 3ca8e27699887c05d225b78c4ebad9c0c60f97f0
Author: Daniel Appelgren <daniel.appelgren@arbetsformedlingen.se>
Date: Mon Dec 6 13:27:45 2021 +0100
correct PR comments and add better lintint to UI
commit 8d54902fcdad4503e9168a249ca47e39ab207f38
Merge: 1b202e6a 938014ab
Author: WP\holno <nikola.holst-nikolic@arbetsformedlingen.se>
Date: Thu Dec 2 10:51:21 2021 +0100
Merge branch 'develop' into feature/TV-851-digi-ng-layout-expansion-panel
commit 1b202e6a9dad961d45e1d0bb1dae766b2a927564
Author: WP\holno <nikola.holst-nikolic@arbetsformedlingen.se>
Date: Wed Dec 1 14:56:36 2021 +0100
Utfasning av digi-ng-expansion-panel till ui-expansion-panel.
20 lines
532 B
TypeScript
20 lines
532 B
TypeScript
import { ExpansionPanelComponent } from './expansion-panel.component';
|
|
|
|
// tslint:disable-next-line: max-classes-per-file
|
|
export class MockChangeDetectorRef {
|
|
markForCheck = jest.fn();
|
|
detach = jest.fn();
|
|
detectChanges = jest.fn();
|
|
reattach = jest.fn();
|
|
checkNoChanges = jest.fn();
|
|
}
|
|
|
|
describe('ExpansionPanelComponent', () => {
|
|
let component: ExpansionPanelComponent;
|
|
|
|
it('should create', () => {
|
|
component = new ExpansionPanelComponent(new MockChangeDetectorRef());
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|