You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
628 B
24 lines
628 B
import Vue from 'vue'
|
|
|
|
describe('Global API: use', () => {
|
|
const def = {}
|
|
const options = {}
|
|
const pluginStub = {
|
|
install: (Vue, opts) => {
|
|
Vue.directive('plugin-test', def)
|
|
expect(opts).toBe(options)
|
|
}
|
|
}
|
|
|
|
it('should apply Object plugin', () => {
|
|
Vue.use(pluginStub, options)
|
|
expect(Vue.options.directives['plugin-test']).toBe(def)
|
|
delete Vue.options.directives['plugin-test']
|
|
})
|
|
|
|
it('should apply Function plugin', () => {
|
|
Vue.use(pluginStub.install, options)
|
|
expect(Vue.options.directives['plugin-test']).toBe(def)
|
|
delete Vue.options.directives['plugin-test']
|
|
})
|
|
})
|
|
|