File size: 453 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
/* global jest */
jest.autoMockOff()
const defineTest = require('jscodeshift/dist/testUtils').defineTest
const fixtures = [
'link-a',
'move-props',
'add-legacy-behavior',
'excludes-links-with-legacybehavior-prop',
'children-interpolation',
'spread-props',
'link-string',
'styled-jsx',
'handle-duplicate-props'
]
for (const fixture of fixtures) {
defineTest(
__dirname,
'new-link',
null,
`new-link/${fixture}`
)
}
|