Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lgestc committed Jan 27, 2025
1 parent 43e817f commit 047c1bc
Showing 1 changed file with 13 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ export const mockSourceLayer = {
properties: {
fillColor: {
type: 'STATIC',
options: { color: '#6092C0' },
options: { color: 'euiColorVis4' },
},
lineColor: {
type: 'STATIC',
options: { color: '#FFFFFF' },
options: { color: 'euiColorVisNeutral0' },
},
lineWidth: { type: 'STATIC', options: { size: 2 } },
iconSize: { type: 'STATIC', options: { size: 8 } },
Expand Down Expand Up @@ -109,11 +109,11 @@ export const mockDestinationLayer = {
properties: {
fillColor: {
type: 'STATIC',
options: { color: '#D36086' },
options: { color: 'euiColorVis2' },
},
lineColor: {
type: 'STATIC',
options: { color: '#FFFFFF' },
options: { color: 'euiColorVisNeutral0' },
},
lineWidth: { type: 'STATIC', options: { size: 2 } },
iconSize: { type: 'STATIC', options: { size: 8 } },
Expand Down Expand Up @@ -165,11 +165,11 @@ export const mockClientLayer = {
properties: {
fillColor: {
type: 'STATIC',
options: { color: '#6092C0' },
options: { color: 'euiColorVis4' },
},
lineColor: {
type: 'STATIC',
options: { color: '#FFFFFF' },
options: { color: 'euiColorVisNeutral0' },
},
lineWidth: { type: 'STATIC', options: { size: 2 } },
iconSize: { type: 'STATIC', options: { size: 8 } },
Expand Down Expand Up @@ -228,11 +228,11 @@ export const mockServerLayer = {
properties: {
fillColor: {
type: 'STATIC',
options: { color: '#D36086' },
options: { color: 'euiColorVis2' },
},
lineColor: {
type: 'STATIC',
options: { color: '#FFFFFF' },
options: { color: 'euiColorVisNeutral0' },
},
lineWidth: { type: 'STATIC', options: { size: 2 } },
iconSize: { type: 'STATIC', options: { size: 8 } },
Expand Down Expand Up @@ -283,7 +283,7 @@ export const mockLineLayer = {
properties: {
fillColor: {
type: 'STATIC',
options: { color: '#1EA593' },
options: { color: '#6092C0' },
},
lineColor: {
type: 'STATIC',
Expand Down Expand Up @@ -348,7 +348,7 @@ export const mockClientServerLineLayer = {
properties: {
fillColor: {
type: 'STATIC',
options: { color: '#1EA593' },
options: { color: '#6092C0' },
},
lineColor: {
type: 'STATIC',
Expand Down Expand Up @@ -535,7 +535,9 @@ export const mockCommaFilebeatExclusionGlobIndexPattern: IndexPatternSavedObject
export const mockEuiTheme: EuiThemeComputed<{}> = {
colors: {
vis: {
euiColorVisNeutral0: '#FFFFFF',
euiColorVisNeutral0: 'euiColorVisNeutral0',
euiColorVis4: 'euiColorVis4',
euiColorVis2: 'euiColorVis2',
},
},
} as unknown as EuiThemeComputed<{}>;

0 comments on commit 047c1bc

Please sign in to comment.