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,10 +1,10 @@
import { expect } from 'chai'
import { When, Then } from '@cucumber/cucumber'
import * as compared from '../support/compared.js'
import { actual, expected } from '../support/compared.js'
When('I use chai', function () {
})
Then('I see chai diff on failure', function () {
expect(compared.actual).to.deep.equal(compared.expected)
expect(actual).to.deep.equal(expected)
})