mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
This commit is contained in:
parent
47139eaa8a
commit
bcb2ad0141
1 changed files with 9 additions and 0 deletions
|
@ -124,6 +124,15 @@ export default function exploreRepositoryFunctonalTests({
|
|||
expect(await testSubjects.exists('codeSourceViewer')).to.be(true);
|
||||
});
|
||||
|
||||
// Click breadcrumb does not affect file tree
|
||||
await testSubjects.click('codeFileBreadcrumb-src');
|
||||
await retry.try(async () => {
|
||||
expect(await testSubjects.exists('codeFileTreeNode-Directory-Icon-src-open')).ok();
|
||||
expect(await testSubjects.exists('codeFileTreeNode-Directory-Icon-src-doc-open')).ok();
|
||||
expect(await testSubjects.exists('codeFileTreeNode-Directory-Icon-test-closed')).ok();
|
||||
expect(await testSubjects.exists('codeFileTreeNode-Directory-Icon-views-closed')).ok();
|
||||
});
|
||||
|
||||
// open another folder
|
||||
await testSubjects.click('codeFileTreeNode-Directory-src-doc');
|
||||
await retry.tryForTime(5000, async () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue