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

11 lines
188 B
JavaScript

import { Then } from '@cucumber/cucumber'
import { should } from 'chai'
should()
Then('I can choose the should syntax', function () {
const boolean = true
boolean.should.be.true
})