Skip to content

Commit

Permalink
adjust jest tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dominiqueclarke committed Oct 3, 2022
1 parent 31850fb commit a356ebd
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ describe('browser normalizers', () => {
original_space: 'test-space',
custom_heartbeat_id: 'test-id-1-test-project-id-test-space',
timeout: null,
id: '',
},
unsupportedKeys: [],
errors: [],
Expand Down Expand Up @@ -213,6 +214,7 @@ describe('browser normalizers', () => {
original_space: 'test-space',
custom_heartbeat_id: 'test-id-2-test-project-id-test-space',
timeout: null,
id: '',
},
unsupportedKeys: [],
errors: [],
Expand Down Expand Up @@ -276,6 +278,7 @@ describe('browser normalizers', () => {
original_space: 'test-space',
custom_heartbeat_id: 'test-id-3-test-project-id-test-space',
timeout: null,
id: '',
},
unsupportedKeys: [],
errors: [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ describe('http normalizers', () => {
urls: 'http://localhost:9200',
'url.port': null,
username: '',
id: '',
},
unsupportedKeys: ['check.response.body', 'unsupportedKey.nestedUnsupportedKey'],
},
Expand Down Expand Up @@ -235,6 +236,7 @@ describe('http normalizers', () => {
urls: 'http://localhost:9200',
'url.port': null,
username: '',
id: '',
},
unsupportedKeys: [],
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ describe('icmp normalizers', () => {
timeout: '60',
type: 'icmp',
wait: '30',
id: '',
},
unsupportedKeys: [],
},
Expand Down Expand Up @@ -166,6 +167,7 @@ describe('icmp normalizers', () => {
timeout: '16',
type: 'icmp',
wait: '60',
id: '',
},
unsupportedKeys: [],
},
Expand Down Expand Up @@ -218,6 +220,7 @@ describe('icmp normalizers', () => {
timeout: '16',
type: 'icmp',
wait: '1',
id: '',
},
unsupportedKeys: ['unsupportedKey.nestedUnsupportedKey'],
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ describe('tcp normalizers', () => {
tags: ['service:smtp', 'org:google'],
timeout: '16',
type: 'tcp',
id: '',
},
unsupportedKeys: [],
},
Expand Down Expand Up @@ -194,6 +195,7 @@ describe('tcp normalizers', () => {
tags: ['tag1', 'tag2'],
timeout: '16',
type: 'tcp',
id: '',
},
unsupportedKeys: [],
},
Expand Down Expand Up @@ -259,6 +261,7 @@ describe('tcp normalizers', () => {
tags: ['tag1', 'tag2'],
timeout: '16',
type: 'tcp',
id: '',
},
unsupportedKeys: ['ports', 'unsupportedKey.nestedUnsupportedKey'],
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -549,6 +549,7 @@ const payloadData = [
type: 'browser',
'url.port': null,
urls: '',
id: '',
},
{
__ui: {
Expand Down Expand Up @@ -607,6 +608,7 @@ const payloadData = [
type: 'browser',
'url.port': null,
urls: '',
id: '',
},
];

Expand Down

0 comments on commit a356ebd

Please sign in to comment.