mirror of
https://github.com/status-im/consul.git
synced 2025-02-09 12:25:17 +00:00
54f0cd812a
Adds 'can access ACLs' which means one of two things 1. When ACLs are disabled I can access the 'please enable ACLs' page 2. When ACLs are enabled, its the same as canRead
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);
|
|
});
|
|
}
|