import Vue from 'vue' describe('Global Assets API', () => { const Test = Vue.extend() it('directive / transition', () => { const assets = ['directive', 'transition'] assets.forEach(function (type) { const def = {} Test[type]('test', def) expect(Test.options[type + 's'].test).toBe(def) expect(Test[type]('test')).toBe(def) // extended registration should not pollute global expect(Vue.options[type + 's'].test).toBeUndefined() }) }) it('component', () => { const def = { a: 1 } Test.component('test', def) const component = Test.options.components.test expect(typeof component).toBe('function') expect(component.super).toBe(Vue) expect(component.options.a).toBe(1) expect(component.options.name).toBe('test') expect(Test.component('test')).toBe(component) // already extended Test.component('test2', component) expect(Test.component('test2')).toBe(component) // extended registration should not pollute global expect(Vue.options.components.test).toBeUndefined() }) describe('Vue.component works', () => { it('should register a component', () => { Vue.component('foo', { template: 'foo' }) Vue.component('bar', { template: 'bar' }) const vm = new Vue({ el: document.createElement('div'), template: '