11 lines
188 B
JavaScript
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
|
|
})
|