2018-03-24 16:22:20 +05:30

9 lines
228 B
JavaScript

var actual = transform(
'var x = <sometag __source="custom" />;',
Object.assign({}, opts, { filename: '/fake/path/mock.js' })
).code;
var expected = 'var x = <sometag __source="custom" />;';
expect(actual).toBe(expected);