5cf063fc8a
- yarn upgrade consul-api-double which includes `status/leader` - add all the ember-data things required to call a new endpoint - Pass the new leader variable through to the template - use the new leader variable in the template to set a leader - add acceptance testing to verify leaders are highlighted - Change testing navigation/api requests to status/leader (on the node listing page, status/leader is now the last get request to be called). - Template whitespace commit (less indenting) - adds a test to to assert no errors happen with an unelected leader
11 lines
300 B
JavaScript
11 lines
300 B
JavaScript
import steps from '../../steps';
|
|
|
|
// step definitions that are shared between features should be moved to the
|
|
// tests/acceptance/steps/steps.js file
|
|
|
|
export default function(assert) {
|
|
return steps(assert).then('I should find a file', function() {
|
|
assert.ok(true, this.step);
|
|
});
|
|
}
|