@agreed/client
Version:
agreed client, testing utilities
21 lines (17 loc) • 357 B
JavaScript
;
const reason = require(`${process.cwd()}/lib/reason`);
const test = require('eater/runner').test;
test('reporter: show reason', () => {
const diff = {
hoge: [ '{:aaa}', undefined ],
ghi: [ 1, 2 ],
foo: {
b: {
fff: [{
a: 'hello {:aa}'
}, 'aaa']
}
}
};
reason.diff(diff);
});