mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
35f1274a1f
* ui: Update lists with Health to sort by unhealthy/healthy by default * Fix up tests for new sorting * Make specific services page-navigation test
11 lines
290 B
JavaScript
11 lines
290 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);
|
|
});
|
|
}
|