Evan You 6 лет назад
Родитель
Сommit
b70f8d267e

+ 3 - 1
packages/runtime-core/__tests__/apiInject.spec.ts

@@ -1,3 +1,5 @@
 // reference: https://vue-composition-api-rfc.netlify.com/api.html#provide-inject
 
-describe('api: provide/inject', () => {})
+describe('api: provide/inject', () => {
+  test.todo('should work')
+})

+ 3 - 1
packages/runtime-core/__tests__/apiLifecycle.spec.ts

@@ -1,3 +1,5 @@
 // reference: https://vue-composition-api-rfc.netlify.com/api.html#lifecycle-hooks
 
-describe('api: lifecycle hooks', () => {})
+describe('api: lifecycle hooks', () => {
+  test.todo('should work')
+})

+ 3 - 1
packages/runtime-core/__tests__/apiSetupContext.spec.ts

@@ -1,3 +1,5 @@
 // reference: https://vue-composition-api-rfc.netlify.com/api.html#setup
 
-describe('api: setup context', () => {})
+describe('api: setup context', () => {
+  test.todo('should work')
+})

+ 3 - 1
packages/runtime-core/__tests__/apiTemplateRef.spec.ts

@@ -1,3 +1,5 @@
 // reference: https://vue-composition-api-rfc.netlify.com/api.html#template-refs
 
-describe('api: template refs', () => {})
+describe('api: template refs', () => {
+  test.todo('should work')
+})

+ 3 - 1
packages/runtime-core/__tests__/apiWatch.spec.ts

@@ -1,3 +1,5 @@
 // reference: https://vue-composition-api-rfc.netlify.com/api.html#watch
 
-describe('api: watch', () => {})
+describe('api: watch', () => {
+  test.todo('should work')
+})

+ 3 - 0
packages/runtime-core/__tests__/h.spec.ts

@@ -0,0 +1,3 @@
+describe('vdom: h', () => {
+  test.todo('should work')
+})

+ 3 - 1
packages/runtime-core/__tests__/vdomComponent.spec.ts

@@ -1 +1,3 @@
-// TODO
+describe('vdom: component', () => {
+  test.todo('should work')
+})

+ 3 - 1
packages/runtime-core/__tests__/vdomOptimizedMode.spec.ts

@@ -1 +1,3 @@
-// TODO
+describe('vdom: optimized mode', () => {
+  test.todo('should work')
+})

+ 3 - 35
packages/vue-compat/__tests__/compat.spec.ts

@@ -1,39 +1,7 @@
 ;(global as any).__COMPAT__ = true
 
-import Vue from '../src/index'
+// import Vue from '../src/index'
 
-describe('2.x compat build', async () => {
-  test('should work', async () => {
-    const root = document.createElement('div')
-    document.body.appendChild(root)
-
-    const mounted = jest.fn()
-    const updated = jest.fn()
-
-    const instance = new Vue({
-      data() {
-        return { count: 0 }
-      },
-      methods: {
-        change() {
-          this.count++
-        }
-      },
-      render(h: any) {
-        return h('div', this.count)
-      },
-      mounted,
-      updated
-    }).$mount(root)
-
-    expect(instance.count).toBe(0)
-    expect(root.textContent).toBe('0')
-    expect(mounted).toHaveBeenCalled()
-
-    instance.change()
-    expect(instance.count).toBe(1)
-    await Vue.nextTick()
-    expect(root.textContent).toBe('1')
-    expect(updated).toHaveBeenCalled()
-  })
+describe('2.x compat build', () => {
+  test.todo('should work')
 })