blob: 0d8cfd98b078ca06b3892a97f4827fd250b32b86 (
plain)
1
2
3
4
5
6
7
8
9
|
import { When, Then } from '@cucumber/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")
})
|