10 lines
273 B
JavaScript
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')
|
|
})
|