c4f4f4e3c6
* Adds an acceptance test for hiding Blocking Queries * Creates a new scenario - If a user adds CONSUL_UI_DISABLE_REALTIME to localStorage, the Blocking Queries section is hidden. * Updates page assertion to accept functions and booleans as properties * ui: Fix "don't see" step to watch for the different pageObject error ember-cli-page object seems to throw a an error with a different message depending on how you call a function: currentPage()[property]() // message = 'Element not found' const prop = currentPage()[property]; prop() // message = 'Something about destructuring' This changes the step/test/assertion to ensure we check for both types of errors Co-authored-by: John Cowen <johncowen@users.noreply.github.com>
7 lines
188 B
JavaScript
7 lines
188 B
JavaScript
export default function(visitable, submitable, isPresent) {
|
|
return submitable({
|
|
visit: visitable('/setting'),
|
|
blockingQueries: isPresent('[data-test-blocking-queries]'),
|
|
});
|
|
}
|