blob: 55b893674d1fb5b9982838e07b84c62f21af553e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { Given, When, Then } from '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)
})
|