| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`generates inline sourcemap 1`] = `
- Object {
- "mappings": ";;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AAHA;AAKA;AAPA;AASA;AACA;AACA;AACA;AAFA;AAIA;AACA;AACA;AACA;AACA;AAHA;AAjBA",
- "names": Array [],
- "sources": Array [
- "Basic.vue",
- ],
- "sourcesContent": Array [
- "<template>
- <div class=\\"hello\\">
- <h1 :class=\\"headingClasses\\">{{ msg }}</h1>
- </div>
- </template>
- <script>
- export default {
- name: 'basic',
- computed: {
- headingClasses: function headingClasses() {
- return {
- red: this.isCrazy,
- blue: !this.isCrazy,
- shadow: this.isCrazy,
- };
- },
- },
- data: function data() {
- return {
- msg: 'Welcome to Your Vue.js App',
- isCrazy: false,
- };
- },
- methods: {
- toggleClass: function toggleClass() {
- this.isCrazy = !this.isCrazy;
- },
- },
- };
- </script>
- ",
- ],
- "version": 3,
- }
- `;
- exports[`generates inline sourcemap for .vue files using src attributes 1`] = `
- Object {
- "mappings": ";;;;;;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAHA;AAKA;AAPA;AASA;AACA;AACA;AACA;AAFA;AAIA;AACA;AACA;AACA;AACA;AAHA;AAjBA",
- "names": Array [],
- "sources": Array [
- "BasicSrc.vue",
- ],
- "sourcesContent": Array [
- "export default {
- name: 'basic',
- computed: {
- headingClasses: function headingClasses () {
- return {
- red: this.isCrazy,
- blue: !this.isCrazy,
- shadow: this.isCrazy
- }
- }
- },
- data: function data () {
- return {
- msg: 'Welcome to Your Vue.js App',
- isCrazy: false
- }
- },
- methods: {
- toggleClass: function toggleClass () {
- this.isCrazy = !this.isCrazy
- }
- }
- }
- ",
- ],
- "version": 3,
- }
- `;
|