mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[Logs UI] Fix Failing test (#171283)
## Summary closes https://github.com/elastic/kibana/issues/171126
This commit is contained in:
parent
3d6ac9d46a
commit
9686d57daa
1 changed files with 2 additions and 2 deletions
|
@ -67,8 +67,8 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
|
|||
const currentUrl = await browser.getCurrentUrl();
|
||||
const parsedUrl = new URL(currentUrl);
|
||||
|
||||
expect(parsedUrl.searchParams.get('logPosition')).to.be(
|
||||
`(position:(tiebreaker:3,time:\'2018-10-17T19:46:22.333333333Z\'))`
|
||||
expect(parsedUrl.searchParams.get('logPosition')).to.contain(
|
||||
`time:\'2018-10-17T19:46:22.333333333Z\'`
|
||||
);
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue