mirror of
https://github.com/status-im/consul.git
synced 2025-01-12 23:05:28 +00:00
c73d53e188
* Add sorting to Intentions with tests * Skip Intentions url back test * Create comparator for intention and implement in template * Add a intentions navigation feature 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);
|
|
});
|
|
}
|