2
2
3
3
import Vue from 'vue'
4
4
import { createRenderer } from 'server/index'
5
+ import { _it } from './utils'
6
+
5
7
const { renderToStream } = createRenderer ( )
6
8
7
9
describe ( 'SSR: renderToStream' , ( ) => {
8
- it ( 'should render to a stream' , done => {
10
+ _it ( 'should render to a stream' , done => {
9
11
const stream = renderToStream (
10
12
new Vue ( {
11
13
template : `
@@ -74,7 +76,7 @@ describe('SSR: renderToStream', () => {
74
76
} )
75
77
} )
76
78
77
- it ( 'should catch error' , done => {
79
+ _it ( 'should catch error' , done => {
78
80
const stream = renderToStream (
79
81
new Vue ( {
80
82
render ( ) {
@@ -90,7 +92,7 @@ describe('SSR: renderToStream', () => {
90
92
stream . on ( 'data' , _ => _ )
91
93
} )
92
94
93
- it ( 'should not mingle two components' , done => {
95
+ _it ( 'should not mingle two components' , done => {
94
96
const padding = new Array ( 20000 ) . join ( 'x' )
95
97
const component1 = new Vue ( {
96
98
template : `<div>${ padding } <div></div></div>` ,
@@ -114,7 +116,7 @@ describe('SSR: renderToStream', () => {
114
116
stream2 . read ( 1 )
115
117
} )
116
118
117
- it ( 'should call context.rendered' , done => {
119
+ _it ( 'should call context.rendered' , done => {
118
120
let a = 0
119
121
const stream = renderToStream (
120
122
new Vue ( {
0 commit comments