Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
fix: get rid of an error caused by vue-test-utils update
Browse files Browse the repository at this point in the history
  • Loading branch information
probil committed May 24, 2020
1 parent dece4fa commit 75ed912
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/__tests__/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ describe('directive usage', () => {
const wrapper = mountWithMask({
template: '<input />',
});
expect(wrapper.is('input')).toBe(true);
expect(wrapper.element.tagName).toBe('INPUT');
});

it('should update model value after directive bind', () => {
Expand Down Expand Up @@ -147,7 +147,7 @@ describe('directive usage', () => {
const localVue = createLocalVue();
localVue.use(VueMask, {
placeholders: {
P: /(6|7)/,
P: /([67])/,
},
});
const wrapper = mount({
Expand Down

0 comments on commit 75ed912

Please sign in to comment.