2
0
mirror of https://github.com/status-im/consul.git synced 2025-03-02 14:20:39 +00:00

11 lines
297 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);
});
}