chore: test todos

This commit is contained in:
Evan You 2019-09-24 15:51:52 -04:00
parent 7a46e51815
commit e67084e5a1
4 changed files with 3 additions and 5 deletions

View File

@ -1 +1,2 @@
// Integration tests for parser + transform + codegen
test.todo('compile')

View File

@ -25,7 +25,6 @@ describe('compiler: transform', () => {
div,
{
parent: ast,
ancestors: [ast],
currentNode: div
}
])
@ -33,7 +32,6 @@ describe('compiler: transform', () => {
div.children[0],
{
parent: div,
ancestors: [ast, div],
currentNode: div.children[0]
}
])
@ -41,7 +39,6 @@ describe('compiler: transform', () => {
div.children[1],
{
parent: div,
ancestors: [ast, div],
currentNode: div.children[1]
}
])

View File

@ -1 +1 @@
// TODO
test.todo('v-bind')

View File

@ -1 +1 @@
// TODO
test.todo('v-on')