Skip to content

Commit c3f6e1a

Browse files
committed
chore: fix types in tests
1 parent 2187e94 commit c3f6e1a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/config.spec.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ import Hello from './components/Hello.vue'
55
describe('config', () => {
66
beforeEach(() => {
77
config.global = {
8-
components: undefined,
9-
directives: undefined,
10-
mixins: undefined,
11-
plugins: undefined,
12-
mocks: undefined,
13-
provide: undefined
8+
components: {},
9+
directives: {},
10+
mixins: [],
11+
plugins: [],
12+
mocks: {},
13+
provide: {}
1414
}
1515

1616
jest.clearAllMocks()

0 commit comments

Comments
 (0)