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') })