-
Notifications
You must be signed in to change notification settings - Fork 83
Implement text shadow, unify text & box shadow, improve spec complian… #71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
}) | ||
|
||
it('textShadow omitting color', () => { | ||
expect(transformCss([['text-shadow', '10px 20px black']])).toEqual({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The test description says omitting color
but the test is the same as previous with a different color, is this correct?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch
}) | ||
|
||
it('textShadow omitting blur, offset-y', () => { | ||
expect(transformCss([['text-shadow', '10px 20px red']])).toEqual({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also this test seems to be the same as previous ones.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Another good catch, this should be removed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 great to see another prop supported
…ce, begin new test layout
Fixes #69