11 lines
257 B
JavaScript
11 lines
257 B
JavaScript
import assert from 'assert'
|
|
import { When, Then } from '@cucumber/cucumber'
|
|
import { actual, expected } from '../support/compared.js'
|
|
|
|
When('I use node', function () {
|
|
})
|
|
|
|
Then('I see node diff on failure', function () {
|
|
assert.equal(actual, expected)
|
|
})
|