summaryrefslogtreecommitdiff
path: root/assertion/features/steps/chai-should.js
blob: 0a89ba15beb78e02ae31bbc2cf188196bc523d4d (plain)
1
2
3
4
5
6
7
8
9
10
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
})