@@ -20,7 +20,7 @@ if (_.inBrowser) {
2020 parent . appendChild ( sibling )
2121 var el = document . createElement ( 'div' )
2222 vm = new Vue ( { el : el } )
23- // block instance
23+ // fragment instance
2424 var frag = document . createDocumentFragment ( )
2525 frag . appendChild ( document . createElement ( 'p' ) )
2626 frag . appendChild ( document . createElement ( 'span' ) )
@@ -38,7 +38,7 @@ if (_.inBrowser) {
3838 expect ( spy . calls . count ( ) ) . toBe ( 1 )
3939 } )
4040
41- it ( 'block instance' , function ( ) {
41+ it ( 'fragment instance' , function ( ) {
4242 vm2 . $appendTo ( parent , spy )
4343 expect ( parent . childNodes . length ) . toBe ( 6 )
4444 expect ( parent . childNodes [ 2 ] ) . toBe ( vm2 . _fragmentStart )
@@ -64,7 +64,7 @@ if (_.inBrowser) {
6464 expect ( spy . calls . count ( ) ) . toBe ( 2 )
6565 } )
6666
67- it ( 'block instance' , function ( ) {
67+ it ( 'fragment instance' , function ( ) {
6868 vm2 . $prependTo ( parent , spy )
6969 expect ( parent . childNodes . length ) . toBe ( 6 )
7070 expect ( parent . childNodes [ 0 ] ) . toBe ( vm2 . _fragmentStart )
@@ -95,7 +95,7 @@ if (_.inBrowser) {
9595 expect ( spy . calls . count ( ) ) . toBe ( 1 )
9696 } )
9797
98- it ( 'block instance' , function ( ) {
98+ it ( 'fragment instance' , function ( ) {
9999 vm2 . $before ( sibling , spy )
100100 expect ( parent . childNodes . length ) . toBe ( 6 )
101101 expect ( parent . childNodes [ 1 ] ) . toBe ( vm2 . _fragmentStart )
@@ -124,7 +124,7 @@ if (_.inBrowser) {
124124 expect ( spy . calls . count ( ) ) . toBe ( 1 )
125125 } )
126126
127- it ( 'block instance' , function ( ) {
127+ it ( 'fragment instance' , function ( ) {
128128 vm2 . $after ( target , spy )
129129 expect ( parent . childNodes . length ) . toBe ( 6 )
130130 expect ( parent . childNodes [ 1 ] ) . toBe ( vm2 . _fragmentStart )
@@ -135,7 +135,7 @@ if (_.inBrowser) {
135135 expect ( spy . calls . count ( ) ) . toBe ( 1 )
136136 } )
137137
138- it ( 'block instance no next sibling' , function ( ) {
138+ it ( 'fragment instance no next sibling' , function ( ) {
139139 vm2 . $after ( sibling , spy )
140140 expect ( parent . childNodes . length ) . toBe ( 6 )
141141 expect ( parent . childNodes [ 2 ] ) . toBe ( vm2 . _fragmentStart )
@@ -161,7 +161,7 @@ if (_.inBrowser) {
161161 expect ( spy . calls . count ( ) ) . toBe ( 1 )
162162 } )
163163
164- it ( 'block instance' , function ( ) {
164+ it ( 'fragment instance' , function ( ) {
165165 vm2 . $before ( sibling )
166166 expect ( parent . childNodes . length ) . toBe ( 6 )
167167 expect ( parent . childNodes [ 1 ] ) . toBe ( vm2 . _fragmentStart )
0 commit comments