// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`comments.js 1`] = ` ====================================options===================================== parsers: ["flow", "babel"] printWidth: 80 | printWidth =====================================input====================================== type X = {...Y/**/}; type X = {/**/...Y}; =====================================output===================================== type X = { ...Y /**/ }; type X = { /**/ ...Y }; ================================================================================ `;