11 lines
270 B
JavaScript
11 lines
270 B
JavaScript
import expect from 'expect'
|
|
import { When, Then } from '@cucumber/cucumber'
|
|
import * as compared from '../support/compared.js'
|
|
|
|
When('I use jest', function () {
|
|
})
|
|
|
|
Then('I see jest diff on failure', function () {
|
|
expect(compared.actual).toEqual(compared.expected)
|
|
})
|