blob: 4e232e9c5fe938207615a4a2feeb7962b5bdc590 (
plain)
1
2
3
4
5
6
7
8
9
|
import { When, Then } from 'cucumber'
import { expect } from 'chai'
When('I concatenate {string} and {string}', function (string, string2) {
})
Then('the result should be {string}', function (string) {
expect(string).to.equal("Georg Cantor")
})
|