1
0
Files
cucumber-js-demo/assertion/features/steps/jest-failure.js

11 lines
259 B
JavaScript

import expect from 'expect'
import { When, Then } from '@cucumber/cucumber'
import { actual, expected } from '../support/compared.js'
When('I use jest', function () {
})
Then('I see jest diff on failure', function () {
expect(actual).toEqual(expected)
})