Skip to content

Commit c67ddb4

Browse files
committed
delete never used variable
1 parent 9d372fd commit c67ddb4

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

components/auto-complete/__tests__/index.test.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { mount } from '@vue/test-utils'
2-
import { render } from '@vue/server-test-utils'
32
import Vue from 'vue'
43
import AutoComplete from '..'
54
import focusTest from '../../../tests/shared/focusTest'

components/vc-table/demo/column-resize.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import BaseMixin from '../../_util/BaseMixin'
55

66
const ResizeableTitle = (h, props, children) => {
77
console.log(props)
8-
const { onResize, width, ...restProps } = props
8+
const { width, ...restProps } = props
99

1010
if (!width) {
1111
return <th {...restProps} >{children}</th>

tests/shared/focusTest.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { mount } from '@vue/test-utils'
2-
import Vue from 'vue'
2+
33
export default function focusTest (Component) {
44
describe('focus and blur', () => {
55
beforeAll(() => {

0 commit comments

Comments
 (0)