UNPKG

ember-codemod-pod-to-octane

Version:

Codemod to un-pod Ember apps, addons, and engines

13 lines (12 loc) 403 B
import { mapComponents } from './map-components.js'; import { mapRoutes1 } from './map-routes-1.js'; import { mapRoutes2 } from './map-routes-2.js'; import { mapServices } from './map-services.js'; export function mapTestsFolder(options) { return new Map([ ...mapComponents(options), ...mapRoutes1(options), ...mapRoutes2(options), ...mapServices(options), ]); }