2024-12-19 23:54:35 +01:00
|
|
|
import expect from 'expect'
|
|
|
|
import { When, Then } from '@cucumber/cucumber'
|
|
|
|
import * as compared from '../support/compared.js'
|
2018-12-31 07:44:25 +01:00
|
|
|
|
|
|
|
When('I use jest', function () {
|
|
|
|
})
|
|
|
|
|
|
|
|
Then('I see jest diff on failure', function () {
|
|
|
|
expect(compared.actual).toEqual(compared.expected)
|
|
|
|
})
|