summaryrefslogtreecommitdiff
path: root/1args/features/steps/concat.js
blob: 529d6973697e67753edcf6d557633b043043100f (plain)
1
2
3
4
5
6
7
8
9
import { When, Then } from '@cucumber/cucumber'
import assert from 'node:assert/strict'

When('I concatenate {string} and {string}', function (string, string2) {
})
       
Then('the result should be {string}', function (string) {
  assert.equal(string, 'Georg Cantor')
})