import { defineTest } from 'jscodeshift/dist/testUtils'; const options = { ComponentName: 'MyNewComponent', componentName: 'myNewComponent', 'component-name': 'my-new-component', }; defineTest( __dirname, '__testfixtures__/codemods/stories-file', options, 'stories', ); defineTest( __dirname, '__testfixtures__/codemods/stories-file-kebab', options, 'stories-with-kebab', ); defineTest(__dirname, '__testfixtures__/codemods/index-file', options, 'index'); defineTest( __dirname, '__testfixtures__/codemods/testkit-exports', options, 'testkit-index', ); defineTest( __dirname, '__testfixtures__/codemods/testkit-exports', options, 'testkit-enzyme', ); defineTest( __dirname, '__testfixtures__/codemods/testkit-exports-ts', options, 'testkit-enzyme-typescript', ); defineTest( __dirname, '__testfixtures__/codemods/testkit-exports', options, 'testkit-protractor', ); defineTest( __dirname, '__testfixtures__/codemods/testkit-exports', options, 'testkit-puppeteer', ); defineTest( __dirname, '__testfixtures__/codemods/testkit-definitions', options, 'testkit-definitions', );