Skip to content

Commit

Permalink
Merge pull request #98 from tokens-studio/adjust-test
Browse files Browse the repository at this point in the history
chore: adjust expand parser test
  • Loading branch information
jorenbroekema authored Apr 14, 2023
2 parents 0301a01 + 0aae1de commit 837aeb3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions test/spec/parsers/expand.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ const tokensInput = {
typography: {
foo: {
value: {
fontFamilies: 'Arial',
fontWeights: '500',
lineHeights: '1.25',
fontSizes: '26',
fontFamily: 'Arial',
fontWeight: '500',
lineHeight: '1.25',
fontSize: '26',
},
type: 'typography',
},
Expand Down Expand Up @@ -89,19 +89,19 @@ const tokensOutput = {
},
typography: {
foo: {
fontFamilies: {
fontFamily: {
value: 'Arial',
type: 'fontFamilies',
},
fontWeights: {
fontWeight: {
value: '500',
type: 'fontWeights',
},
lineHeights: {
lineHeight: {
value: '1.25',
type: 'lineHeights',
},
fontSizes: {
fontSize: {
value: '26',
type: 'fontSizes',
},
Expand Down

0 comments on commit 837aeb3

Please sign in to comment.