diff --git a/packages/devui-vue/devui/alert/__tests__/alert.spec.ts b/packages/devui-vue/devui/alert/__tests__/alert.spec.ts index 08830e625075f5fe495d15abd4e63e6561d2607d..1ed2d1cafe3bd4d5b5cd42d5c85b8bb54e3c1946 100644 --- a/packages/devui-vue/devui/alert/__tests__/alert.spec.ts +++ b/packages/devui-vue/devui/alert/__tests__/alert.spec.ts @@ -26,7 +26,7 @@ describe('alert', () => { }) expect(wrapper.find('.devui-icon-success').exists()).toBe(true) }) - it('alert should has success type', () => { + it('alert should has warning type', () => { const wrapper = mount(Alert, { props: { type: 'warning', @@ -34,7 +34,7 @@ describe('alert', () => { }) expect(wrapper.find('.devui-icon-warning').exists()).toBe(true) }) - it('alert should has success type', () => { + it('alert should has error type', () => { const wrapper = mount(Alert, { props: { type: 'danger',