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

11 lines
188 B
JavaScript
Raw Normal View History

import { Then } from '@cucumber/cucumber'
import { should } from 'chai'
should()
2018-12-31 07:44:25 +01:00
Then('I can choose the should syntax', function () {
const boolean = true
boolean.should.be.true
})