Skip to content

Commit

Permalink
chore: update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
egoist committed Jan 18, 2020
1 parent f148bec commit cace6a7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions test/__snapshots__/parseComponent.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -115,18 +115,18 @@ export default {
style: undefined // No CSS variables
,
globalStyle: function (vm) {
var gv0 = vm => vm.fontSize;
var v3b73e5fa = vm => vm.fontSize;
return {
\\"--gv0\\": gv0(vm)
\\"--v3b73e5fa\\": v3b73e5fa(vm)
};
}
};
</script>
<style scoped=\\"undefined\\" lang=\\"css\\">
h1 {color: red; font-size: var(--gv0);}
h1 {color: red; font-size: var(--v3b73e5fa);}
</style>
Expand Down Expand Up @@ -237,12 +237,12 @@ exports[`simple 1`] = `
<script>
export default {
style: function (vm, existing) {
var v0 = vm => vm.color;
var v6f754d6e = vm => vm.color;
var v1 = 200 + 1;
var v447fa43e = 200 + 1;
return [existing, {
\\"--v0\\": v0(vm),
\\"--v1\\": v1 + \\"px\\"
\\"--v6f754d6e\\": v6f754d6e(vm),
\\"--v447fa43e\\": v447fa43e + \\"px\\"
}];
}
};
Expand All @@ -252,8 +252,8 @@ exports[`simple 1`] = `
<style scoped=\\"true\\" lang=\\"css\\">
h1 {
color: var(--v0);
width: var(--v1);
color: var(--v6f754d6e);
width: var(--v447fa43e);
}
</style>
Expand Down

0 comments on commit cace6a7

Please sign in to comment.