Skip to content

Commit

Permalink
Update test fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
drwpow committed Dec 9, 2024
1 parent 581595f commit 48ce264
Showing 1 changed file with 64 additions and 16 deletions.
80 changes: 64 additions & 16 deletions packages/plugin-js/test/typography/want.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,56 +25,80 @@ export const tokens = {
"unit": "px"
},
"fontWeight": 400,
"lineHeight": "41px"
"lineHeight": {
"value": 41,
"unit": "px"
}
},
"xs": {
"fontSize": {
"value": 31,
"unit": "px"
},
"lineHeight": "38px"
"lineHeight": {
"value": 38,
"unit": "px"
}
},
"s": {
"fontSize": {
"value": 32,
"unit": "px"
},
"lineHeight": "39px"
"lineHeight": {
"value": 39,
"unit": "px"
}
},
"m": {
"fontSize": {
"value": 33,
"unit": "px"
},
"lineHeight": "40px"
"lineHeight": {
"value": 40,
"unit": "px"
}
},
"l": {
"fontSize": {
"value": 34,
"unit": "px"
},
"lineHeight": "41px"
"lineHeight": {
"value": 41,
"unit": "px"
}
},
"xl": {
"fontSize": {
"value": 36,
"unit": "px"
},
"lineHeight": "43px"
"lineHeight": {
"value": 43,
"unit": "px"
}
},
"2xl": {
"fontSize": {
"value": 38,
"unit": "px"
},
"lineHeight": "46px"
"lineHeight": {
"value": 46,
"unit": "px"
}
},
"3xl": {
"fontSize": {
"value": 40,
"unit": "px"
},
"lineHeight": "48px"
"lineHeight": {
"value": 48,
"unit": "px"
}
},
},
"typography.body": {
Expand All @@ -87,56 +111,80 @@ export const tokens = {
"unit": "px"
},
"fontWeight": 400,
"lineHeight": "22px"
"lineHeight": {
"value": 22,
"unit": "px"
}
},
"xs": {
"fontSize": {
"value": 14,
"unit": "px"
},
"lineHeight": "19px"
"lineHeight": {
"value": 19,
"unit": "px"
}
},
"s": {
"fontSize": {
"value": 15,
"unit": "px"
},
"lineHeight": "20px"
"lineHeight": {
"value": 20,
"unit": "px"
}
},
"m": {
"fontSize": {
"value": 16,
"unit": "px"
},
"lineHeight": "21px"
"lineHeight": {
"value": 21,
"unit": "px"
}
},
"l": {
"fontSize": {
"value": 17,
"unit": "px"
},
"lineHeight": "22px"
"lineHeight": {
"value": 22,
"unit": "px"
}
},
"xl": {
"fontSize": {
"value": 19,
"unit": "px"
},
"lineHeight": "24px"
"lineHeight": {
"value": 24,
"unit": "px"
}
},
"2xl": {
"fontSize": {
"value": 21,
"unit": "px"
},
"lineHeight": "26px"
"lineHeight": {
"value": 26,
"unit": "px"
}
},
"3xl": {
"fontSize": {
"value": 23,
"unit": "px"
},
"lineHeight": "29px"
"lineHeight": {
"value": 29,
"unit": "px"
}
},
},
};
Expand Down

0 comments on commit 48ce264

Please sign in to comment.