8389-testToMaster #1207

Merged
alexm merged 180 commits from 8389-testToMaster into master 2025-01-14 06:32:35 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit f4aee047ff - Show all commits

View File

@ -9,8 +9,8 @@ describe('FormModel', () => {
describe('modelValue', () => {
it('should use the provided model', () => {
const { vm } = mount({ propsData: { model: 'mockModel' } });
expect(vm.modelValue).toBe('mockModel');
const { vm } = mount({ propsData: { model } });
expect(vm.modelValue).toBe(model);
});
it('should use the route meta title when model is not provided', () => {