summaryrefslogtreecommitdiff
path: root/assertion/features/steps/chai-should.js
blob: 2d733e8715413fb3996ec34a83029eeebe722997 (plain)
1
2
3
4
5
6
7
8
const { Then } = require('cucumber')
require('chai').should()

Then('I can choose the should syntax', function () {
  const boolean = true

  boolean.should.be.true
})