prettier/tests/flow/ignore_package/__snapshots__/jsfmt.spec.js.snap

35 lines
791 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`foo.js 1`] = `
/** @flow */
/* this require routes to nothing, because
our node_modules/underscore directory
has been excluded. If package.json files
are being excluded properly, we'll get
'Required module not found'.
*/
var _ = require('underscore');
function foo(): string {
return _.foo();
}
module.exports = foo;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/** @flow */
/* this require routes to nothing, because
our node_modules/underscore directory
has been excluded. If package.json files
are being excluded properly, we'll get
'Required module not found'.
*/
var _ = require("underscore");
function foo(): string {
return _.foo();
}
module.exports = foo;
`;