Make this steps file the same as the others...

WIP: Ideally all of these would go
This commit is contained in:
John Cowen 2018-06-07 12:19:54 +01:00
parent 6e993ecc10
commit 29196d3f49
1 changed files with 3 additions and 4 deletions

View File

@ -4,8 +4,7 @@ import steps from './steps';
// 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);
// });
return steps(assert).then('I should find a file', function() {
assert.ok(true, this.step);
});
}