Skip to content

Commit

Permalink
Merge branch 'main' into link-reporting-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
amyjtechwriter authored Nov 27, 2023
2 parents d9b1555 + 5f5c92a commit 94e4ebb
Show file tree
Hide file tree
Showing 79 changed files with 1,887 additions and 1,709 deletions.
2 changes: 2 additions & 0 deletions .github/paths-labeller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@
- "x-pack/plugins/synthetics/**/*.*"
- "x-pack/plugins/ux/**/*.*"
- "x-pack/plugins/observability/public/components/shared/exploratory_view/**/*.*"
- "Team:obs-ux-management":
- "x-pack/plugins/observability/**/*.*"
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,18 @@ describe('breadcrumbs', () => {
{
id: 'root',
title: 'Root',
path: ['root'],
path: 'root',
breadcrumbStatus: 'hidden' as 'hidden',
children: [
{
id: 'subNav',
path: ['root', 'subNav'],
path: 'root.subNav',
title: '', // intentionally empty to skip rendering
children: [
{
id: 'navItem1',
title: 'Nav Item 1',
path: ['root', 'subNav', 'navItem1'],
path: 'root.subNav.navItem1',
deepLink: {
id: 'navItem1',
title: 'Nav Item 1',
Expand Down Expand Up @@ -318,12 +318,12 @@ describe('getActiveNodes$()', () => {
{
id: 'root',
title: 'Root',
path: ['root'],
path: 'root',
children: [
{
id: 'item1',
title: 'Item 1',
path: ['root', 'item1'],
path: 'root.item1',
deepLink: {
id: 'item1',
title: 'Item 1',
Expand All @@ -344,14 +344,12 @@ describe('getActiveNodes$()', () => {
{
id: 'root',
title: 'Root',
isActive: true,
path: ['root'],
path: 'root',
},
{
id: 'item1',
title: 'Item 1',
isActive: true,
path: ['root', 'item1'],
path: 'root.item1',
deepLink: {
id: 'item1',
title: 'Item 1',
Expand All @@ -375,12 +373,12 @@ describe('getActiveNodes$()', () => {
{
id: 'root',
title: 'Root',
path: ['root'],
path: 'root',
children: [
{
id: 'item1',
title: 'Item 1',
path: ['root', 'item1'],
path: 'root.item1',
getIsActive: () => true,
},
],
Expand All @@ -395,14 +393,12 @@ describe('getActiveNodes$()', () => {
{
id: 'root',
title: 'Root',
isActive: true,
path: ['root'],
path: 'root',
},
{
id: 'item1',
title: 'Item 1',
isActive: true,
path: ['root', 'item1'],
path: 'root.item1',
getIsActive: expect.any(Function),
},
],
Expand Down
Loading

0 comments on commit 94e4ebb

Please sign in to comment.