(style: string)
| 16 | |
| 17 | it('splits margins, paddings, and border radiuses correctly', () => { |
| 18 | const marginPredicate = (style: string) => style.startsWith('margin'); |
| 19 | const paddingPredicate = (style: string) => style.startsWith('padding'); |
| 20 | const borderRadiusPredicate = (style: string) => |
| 21 | style.startsWith('border') && style.endsWith('Radius'); |
no outgoing calls
no test coverage detected
searching dependent graphs…