1
0
Files
cucumber-js-demo/1args/features/steps/concat.js

10 lines
273 B
JavaScript

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