Skip to content

Commit f84b81a

Browse files
committed
style: fix formatting
1 parent a4d0137 commit f84b81a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/babel-plugin-jsx/test/index.test.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -371,12 +371,12 @@ describe('PatchFlags', () => {
371371
return () => (
372372
<button value={`${foo.value}`} onClick={() => foo.value++}></button>
373373
);
374-
}
374+
},
375375
});
376376
patchFlagExpect(wrapper, 8, ['value', 'onClick']);
377377
await wrapper.trigger('click');
378378
expect(wrapper.html()).toBe('<button value="1"></button>');
379-
})
379+
});
380380

381381
test('full props', async () => {
382382
const wrapper = mount({

0 commit comments

Comments
 (0)