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

33 lines
556 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`example.vue - vue-verify 1`] = `
<template>
<p>Templates are not formatted yet ...
</p>
</template>
<script>
let Prettier = format => { your.js('though') }
</script>
<style>
.and { css: too !important }
</style>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<template>
<p>Templates are not formatted yet ...
</p>
</template>
<script>
let Prettier = format => {
your.js("though");
};
</script>
<style>
.and { css: too !important }
</style>
`;