1
0

Remove unused jest dependency

This commit is contained in:
2025-07-16 15:10:10 +02:00
parent 738f4f2bdb
commit ef41c7d788
21 changed files with 1598 additions and 10037 deletions

View File

@@ -1,5 +1,5 @@
import { Given, When, Then } from '@cucumber/cucumber'
import { expect } from 'chai'
import assert from 'node:assert/strict'
Given('the start value is {string}', function (string) {
this.concat = string
@@ -10,5 +10,5 @@ When('I concatenate {string}', function (string) {
})
Then('the result should be {string}', function (string) {
expect(string).to.equal(this.concat)
assert.equal(string, this.concat)
})