mirror of
https://github.com/status-im/consul.git
synced 2025-01-31 16:07:58 +00:00
96c5723d28
* ui: Add URLs to tabs to we can assert them * Add dcs to the service show page, temporarily There is an ongoing PR which removes the need to do this by adding a dcs property to the navigation, hence temporary * Add a step to assert on whether text _contains_ rather than exact match * Test whether the URL of the instance tab changes when the user switches dcs using the main navigation menu * Recompute href-to's on URL change, just like is-href
11 lines
293 B
JavaScript
11 lines
293 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);
|
|
});
|
|
}
|