mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
c706089c9f
* Adds conditional in route to not make discovery-chain request if service kind is equal to `connect-proxy` or `mesh-gateway` * Adds conditional in template to not show Routing tab if `chain` returns as null * Creates a new acceptance test to test the Routing tab not being displayed for a service proxy * Adds `tabs` to the services/show page object
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);
|
|
});
|
|
}
|