Skip to content

Commit

Permalink
fix: 修复test测试集
Browse files Browse the repository at this point in the history
  • Loading branch information
wuls committed Oct 7, 2020
1 parent 96d90f8 commit 9ba3fa3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/message-box/__tests__/MessageBox.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ describe('MessageBox.vue', () => {
})

test('kind of alert', async () => {
const messagebox = await mount(MessageBox, {
const messagebox = mount(MessageBox, {
props: {
title: 'title',
message: 'message',
Expand All @@ -29,7 +29,7 @@ describe('MessageBox.vue', () => {
})

test('dangerouslyUseHTMLString', async () => {
const messagebox = await mount(MessageBox, {
const messagebox = mount(MessageBox, {
props: {
title: 'title',
message: '<div>message</div>',
Expand All @@ -45,7 +45,7 @@ describe('MessageBox.vue', () => {

test('test dome click', async () => {
const callBackAction = ref(null)
const messagebox = await mount(MessageBox, {
const messagebox = mount(MessageBox, {
props: {
title: 'title',
message: '<div>message</div>',
Expand Down

0 comments on commit 9ba3fa3

Please sign in to comment.