Skip to content

Commit

Permalink
Fix broken tests and types.
Browse files Browse the repository at this point in the history
  • Loading branch information
justinkambic committed Apr 13, 2020
1 parent 1418a6d commit c1aea4a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ describe('MonitorStatusBar component', () => {

beforeEach(() => {
monitorStatus = {
docId: 'few213kl',
timestamp: moment(new Date())
.subtract(15, 'm')
.toString(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ describe('PingListExpandedRow', () => {
let ping: Ping;
beforeEach(() => {
ping = {
docId: 'fdeio12',
timestamp: '19290310',
monitor: {
duration: {
Expand Down
1 change: 1 addition & 0 deletions x-pack/legacy/plugins/uptime/public/hooks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* you may not use this file except in compliance with the Elastic License.
*/

export * from './use_monitor';
export * from './use_url_params';
export * from './use_telemetry';
export * from './update_kuery_string';
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@
"query": "r=200x1",
"full": "http://localhost:5678/pattern?r=200x1"
},
"docId": "h5toHm0B0I9WX_CznN_V",
"timestamp": "2019-09-11T03:40:34.371Z"
}

0 comments on commit c1aea4a

Please sign in to comment.