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

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: probil/v-mask
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5e40a919c1ebe0bea76c57282e491e00e3d8ea81
Choose a base ref
..
head repository: probil/v-mask
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 284fa37e24ed78d5b3e2b32593587a2ea30475e9
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/__tests__/index.test.js
2 changes: 1 addition & 1 deletion src/__tests__/index.test.js
Original file line number Diff line number Diff line change
@@ -248,7 +248,7 @@ describe('directive usage', () => {
const wrapper = mountWithMask({
props: { triggerUpdate: { required: false } },
data: () => ({ mask: () => [/\d/, /\d/], value: null }),
template: `<input v-mask="mask" v-model="value" v-on:input="$emit('input', $event)" />`,
template: '<input v-mask="mask" v-model="value" v-on:input="$emit(\'input\', $event)" />',
});

await wrapper.setProps({ triggerUpdate: true });