7 lines
155 B
JavaScript
7 lines
155 B
JavaScript
import { expect } from 'chai'
|
|
import { Then } from '@cucumber/cucumber'
|
|
|
|
Then('I can choose the expect syntax', function () {
|
|
expect(true).to.be.true
|
|
})
|