blob: 80e4aaa78bc069f9988076926314c0c1d0789c8e (
plain)
1
2
3
4
5
6
7
8
9
10
|
import assert from 'assert'
import { When, Then } from '@cucumber/cucumber'
import * as compared from '../support/compared.js'
When('I use node', function () {
})
Then('I see node diff on failure', function () {
assert.equal(compared.actual, compared.expected)
})
|