c98130cc08
* ui: Add the most basic workspace root in /ui * We already have a LICENSE file in the repository root * Change directory path in build scripts ui-v2 -> ui * Make yarn install flags configurable from elsewhere * Minimal workspace root makefile * Call the new docker specific target * Update yarn in the docker build image * Reconfigure the netlify target and move to the higher makefile * Move ui-v2 -> ui/packages/consul-ui * Change repo root to refleect new folder structure * Temporarily don't hoist consul-api-double * Fixup CI configuration * Fixup lint errors * Fixup Netlify target
22 lines
699 B
JavaScript
22 lines
699 B
JavaScript
export default function(scenario, assert, find, currentPage) {
|
|
scenario.then('I see the $property form with yaml\n$yaml', function(property, data) {
|
|
try {
|
|
let obj;
|
|
try {
|
|
obj = find(property);
|
|
} catch (e) {
|
|
obj = currentPage();
|
|
}
|
|
return Object.keys(data).reduce(function(prev, item, i, arr) {
|
|
const name = `${obj.prefix || property}[${item}]`;
|
|
const $el = document.querySelector(`[name="${name}"]`);
|
|
const actual = $el.value;
|
|
const expected = data[item];
|
|
assert.strictEqual(actual, expected, `Expected settings to be ${expected} was ${actual}`);
|
|
}, obj);
|
|
} catch (e) {
|
|
throw e;
|
|
}
|
|
});
|
|
}
|