prettier/tests/flow/config_module_system_node_r.../subdir/__snapshots__/jsfmt.spec.js.snap

26 lines
896 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`sublevel.js 1`] = `
====================================options=====================================
parsers: ["flow"]
printWidth: 80
| printWidth
=====================================input======================================
// @flow
import {name} from "testproj2";
(name: "node_modules/testproj2"); // Error: Resolve from sibling 'custom_resolve_dir' first!
(name: "subdir/custom_resolve_dir/testproj2");
=====================================output=====================================
// @flow
import { name } from "testproj2";
(name: "node_modules/testproj2"); // Error: Resolve from sibling 'custom_resolve_dir' first!
(name: "subdir/custom_resolve_dir/testproj2");
================================================================================
`;