Skip to content

Commit 1abbe0a

Browse files
committed
fix test
1 parent 925e694 commit 1abbe0a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/plugins/management/public/legacy/section.test.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { IndexedArray } from '../../../../legacy/ui/public/indexed_array';
2323
const capabilitiesMock = {
2424
management: {
2525
kibana: { sampleFeature2: false },
26-
}
26+
},
2727
};
2828

2929
describe('ManagementSection', () => {
@@ -64,7 +64,11 @@ describe('ManagementSection', () => {
6464
});
6565

6666
it('assigns all options', () => {
67-
const section = new ManagementSection('kibana', { description: 'test', url: 'foobar' }, capabilitiesMock);
67+
const section = new ManagementSection(
68+
'kibana',
69+
{ description: 'test', url: 'foobar' },
70+
capabilitiesMock
71+
);
6872
expect(section.description).toBe('test');
6973
expect(section.url).toBe('foobar');
7074
});

0 commit comments

Comments
 (0)