test(modal): add testcase for customization

This commit is contained in:
unix
2020-05-09 00:05:23 +08:00
parent 47e49ae88e
commit 4c71d0de6a
2 changed files with 69 additions and 0 deletions

View File

@@ -1,5 +1,62 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Modal customization should be supported 1`] = `
"<div class=\\"wrapper test-class wrapper-enter\\"><h2 class=\\"\\">Modal</h2><style>
h2 {
font-size: 1.5rem;
line-height: 1.6;
font-weight: normal;
text-align: center;
margin: 0;
display: inline-flex;
justify-content: center;
align-items: center;
word-break: break-word;
text-transform: capitalize;
color: #000;
}
</style><style>
.wrapper {
max-width: 85vw;
width: 100px;
overflow: hidden;
display: flex;
flex-direction: column;
position: relative;
box-sizing: border-box;
background-color: #fff;
color: #000;
border-radius: 5px;
padding: 16pt;
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
opacity: 0;
transform: translate3d(0px, -40px, 0px);
transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0s,
transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.wrapper-enter {
opacity: 0;
transform: translate3d(0px, -40px, 0px);
}
.wrapper-enter-active {
opacity: 1;
transform: translate3d(0px, 0px, 0px);
}
.wrapper-leave {
opacity: 1;
transform: translate3d(0px, 0px, 0px);
}
.wrapper-leave-active {
opacity: 0;
transform: translate3d(0px, -50px, 0px);
}
</style></div>"
`;
exports[`Modal should render correctly 1`] = `
"<div class=\\"backdrop transition-enter\\"><div class=\\"layer\\"></div><div class=\\"content\\"><div class=\\"wrapper wrapper-enter\\"><h2 class=\\"\\">Modal</h2><style>
h2 {

View File

@@ -105,4 +105,16 @@ describe('Modal', () => {
expectModalIsClosed(wrapper)
expect(closeHandler).toHaveBeenCalled()
})
it('customization should be supported', () => {
const wrapper = mount(
<Modal open={true} width="100px" wrapClassName="test-class">
<Modal.Title>Modal</Modal.Title>
</Modal>,
)
const html = wrapper.find('.wrapper').html()
expect(html).toMatchSnapshot()
expect(html).toContain('test-class')
expect(() => wrapper.unmount()).not.toThrow()
})
})