mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-03 20:48:49 +08:00
40 lines
654 B
TypeScript
40 lines
654 B
TypeScript
import '../../src';
|
|
|
|
import {buildStyle} from '../../src';
|
|
|
|
test('style var background', () => {
|
|
expect(
|
|
buildStyle('${style}', {
|
|
style: {
|
|
backgroundImage: 'http://www.example.com/a.png'
|
|
}
|
|
})
|
|
).toEqual({
|
|
backgroundImage: 'url("http://www.example.com/a.png")'
|
|
});
|
|
|
|
expect(
|
|
buildStyle(
|
|
{
|
|
backgroundImage: 'http://www.example.com/a.png'
|
|
},
|
|
{}
|
|
)
|
|
).toEqual({
|
|
backgroundImage: 'url("http://www.example.com/a.png")'
|
|
});
|
|
});
|
|
|
|
test('style case', () => {
|
|
expect(
|
|
buildStyle(
|
|
{
|
|
'font-size': '10'
|
|
},
|
|
{}
|
|
)
|
|
).toEqual({
|
|
fontSize: '10'
|
|
});
|
|
});
|