13 lines
271 B
JavaScript
13 lines
271 B
JavaScript
import { Given, When, Then } from '@cucumber/cucumber'
|
|
import assert from 'node:assert/strict'
|
|
|
|
Given('the start value is {int}', function (int) {
|
|
})
|
|
|
|
When('I add {int}', function (int) {
|
|
})
|
|
|
|
Then('the result should be {int}', function (int) {
|
|
assert.equal(int, 11)
|
|
})
|