blob: 0f074e43b8f4f1ffc7b5db8e8869512c06d9263d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { Given, When, Then } from '@cucumber/cucumber'
import { expect } from 'chai'
Given('the start value is {int}', function (int) {
})
When('I add {int}', function (int) {
})
Then('the result should be {int}', function (int) {
expect(int).to.equal(11)
})
|