Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export default function(assert) {
return yadda.localisation.default.library()
.given('I type "Ember g feature make-feature"', async function() {
await visit('/');
assert.ok(true, this.step);
})
.when('I look in the folder', function() {
assert.ok(true, this.step);
});
}
export default function() {
return yadda.localisation.default.library()
.given('I type "Ember g feature make-feature"', async function() {
await visit('/');
expect(true, this.step).to.be.true;
})
.when('I look in the folder', function() {
expect(true, this.step).to.be.true;
});
}
export default function(assert) {
return yadda.localisation.default.library()
.given('I type "Ember g feature make-feature"', function(){
assert.ok(true, this.step);
})
.when('I look in the folder', function(){
assert.ok(true, this.step);
});
}
export default function(assert) {
return yadda.localisation.default.library()
.then('I should see the text "$text"', function(text) {
assert.equal(this.element.textContent.trim(), text);
});
}
export default function(assert) {
return yadda.localisation.default.library()
.when('I have no annotations', function() {
})
.then('the test context should have "$name"', function(property) {
assert.ok(this[property], this.step);
});
}
export default function(assert) {
return yadda.localisation.default.library()
.given('I type "Ember g feature make-feature"', function(){
assert.ok(true, this.step);
})
.when('I look in the folder', function(){
assert.ok(true, this.step);
});
}
export default function() {
return yadda.localisation.default.library()
.given('I type "Ember g feature make-feature"', function(){
expect(true, this.step).to.be.true;
})
.when('I look in the folder', function(){
expect(true, this.step).to.be.true;
});
}
export default function(assert) {
return yadda.localisation.default.library()
.given('I type "Ember g feature make-feature"', function(){
assert.ok(true, this.step);
})
.when('I look in the folder', function(){
assert.ok(true, this.step);
});
}
export default function(assert) {
return yadda.localisation.default.library()
.given('I type "Ember g feature make-feature"', function(){
assert.ok(true, this.step);
})
.when('I look in the folder', function(){
assert.ok(true, this.step);
});
}