prettier/tests/flow/haste_use_name_reducers/dir1/__snapshots__/jsfmt.spec.js.snap

28 lines
677 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Module1.js 1`] = `
====================================options=====================================
parsers: ["flow"]
printWidth: 80
| printWidth
=====================================input======================================
/* @flow */
require('test');
class Impl {}
module.exports = new Impl();
=====================================output=====================================
/* @flow */
require("test");
class Impl {}
module.exports = new Impl();
================================================================================
`;