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

28 lines
750 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`test.js 1`] = `
====================================options=====================================
parsers: ["flow"]
printWidth: 80
| printWidth
=====================================input======================================
/* @flow */
class Foo {
annotationOnly: string;
initOnly = 'asdf';
initWithAnnotation: string = 'asdf';
}
=====================================output=====================================
/* @flow */
class Foo {
annotationOnly: string;
initOnly = "asdf";
initWithAnnotation: string = "asdf";
}
================================================================================
`;