mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Chore: Fix bunch of strict null error to fix master CI (#23443)
* Fix bunch of null error * Fix failing test * Another test fix
This commit is contained in:
@@ -179,7 +179,7 @@ describe('ResultProcessor', () => {
|
||||
entry: 'third',
|
||||
entryFieldIndex: 2,
|
||||
hasAnsi: false,
|
||||
labels: undefined,
|
||||
labels: {},
|
||||
logLevel: 'unknown',
|
||||
raw: 'third',
|
||||
searchWords: [] as string[],
|
||||
@@ -196,7 +196,7 @@ describe('ResultProcessor', () => {
|
||||
entry: 'second message',
|
||||
entryFieldIndex: 2,
|
||||
hasAnsi: false,
|
||||
labels: undefined,
|
||||
labels: {},
|
||||
logLevel: 'unknown',
|
||||
raw: 'second message',
|
||||
searchWords: [] as string[],
|
||||
@@ -213,7 +213,7 @@ describe('ResultProcessor', () => {
|
||||
entry: 'this is a message',
|
||||
entryFieldIndex: 2,
|
||||
hasAnsi: false,
|
||||
labels: undefined,
|
||||
labels: {},
|
||||
logLevel: 'unknown',
|
||||
raw: 'this is a message',
|
||||
searchWords: [] as string[],
|
||||
|
||||
Reference in New Issue
Block a user