1
0
cucumber-js-demo/assertion/features/steps/chai-expect.js

7 lines
155 B
JavaScript
Raw Permalink Normal View History

2018-12-31 07:44:25 +01:00
const { expect } = require('chai')
const { Then } = require('cucumber')
Then('I can choose the expect syntax', function () {
expect(true).to.be.true
})