Skip to content

Commit

Permalink
Merge branch 'master' into i18n/new_checker_master
Browse files Browse the repository at this point in the history
  • Loading branch information
elasticmachine committed Aug 10, 2020
2 parents c1dabe1 + f7f2988 commit d5c53ee
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docs/developer/architecture/code-exploration.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ Contains the Discover application and the saved search embeddable.
Embeddables are re-usable widgets that can be rendered in any environment or plugin. Developers can embed them directly in their plugin. End users can dynamically add them to any embeddable containers.
- {kib-repo}blob/{branch}/src/plugins/es_ui_shared[esUiShared]
- {kib-repo}blob/{branch}/src/plugins/es_ui_shared/README.md[esUiShared]
WARNING: Missing README.
This plugin contains reusable code in the form of self-contained modules (or libraries). Each of these modules exports a set of functionality relevant to the domain of the module.
- {kib-repo}blob/{branch}/src/plugins/expressions/README.md[expressions]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,16 @@ export function MachineLearningDataFrameAnalyticsCreationProvider(
},

async assertJobTypeSelection(expectedSelection: string) {
const actualSelection = await testSubjects.getAttribute(
'mlAnalyticsCreateJobWizardJobTypeSelect',
'value'
);
expect(actualSelection).to.eql(
expectedSelection,
`Job type selection should be '${expectedSelection}' (got '${actualSelection}')`
);
await retry.tryForTime(5000, async () => {
const actualSelection = await testSubjects.getAttribute(
'mlAnalyticsCreateJobWizardJobTypeSelect',
'value'
);
expect(actualSelection).to.eql(
expectedSelection,
`Job type selection should be '${expectedSelection}' (got '${actualSelection}')`
);
});
},

async selectJobType(jobType: string) {
Expand Down

0 comments on commit d5c53ee

Please sign in to comment.