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

40 lines
907 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`example.vue 1`] = `
====================================options=====================================
parsers: ["vue"]
printWidth: 80
| printWidth
=====================================input======================================
<template>
<p>Templates are formatted as well...
</p>
</template>
<script>
let Prettier = format => { your.js('though') }
</script>
<style>
.and { css: too !important }
</style>
=====================================output=====================================
<template>
<p>Templates are formatted as well...</p>
</template>
<script>
let Prettier = format => {
your.js("though");
};
</script>
<style>
.and {
css: too !important;
}
</style>
================================================================================
`;