Merge branch 'dev' into next

This commit is contained in:
chenjiahan
2020-09-06 07:59:45 +08:00
12 changed files with 109 additions and 28 deletions
+12
View File
@@ -198,3 +198,15 @@ test('close-icon prop', () => {
expect(wrapper).toMatchSnapshot();
});
test('closeable prop', () => {
const wrapper = mount(ActionSheet, {
propsData: {
value: true,
title: 'Title',
closeable: false,
},
});
expect(wrapper).toMatchSnapshot();
});