prettier/tests/decorator_comments/__snapshots__/jsfmt.spec.js.snap

24 lines
715 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`comments.js 1`] = `
====================================options=====================================
parsers: ["babel", "typescript"]
printWidth: 80
| printWidth
=====================================input======================================
class Something {
@Annotateme()
// comment
static property: Array<string>;
}
=====================================output=====================================
class Something {
@Annotateme()
// comment
static property: Array<string>;
}
================================================================================
`;