@@ -53,7 +53,7 @@ public void ShouldTransformJsx()
53
53
_environment . Verify ( x => x . ExecuteWithLargerStackIfRequired < string > (
54
54
"ReactNET_transform" ,
55
55
"<div>Hello World</div>" ,
56
- false
56
+ It . IsAny < bool > ( )
57
57
) ) ;
58
58
}
59
59
@@ -63,7 +63,7 @@ public void ShouldWrapExceptionsInJsxExeption()
63
63
_environment . Setup ( x => x . ExecuteWithLargerStackIfRequired < string > (
64
64
"ReactNET_transform" ,
65
65
"<div>Hello World</div>" ,
66
- false
66
+ It . IsAny < bool > ( )
67
67
) ) . Throws ( new Exception ( "Something broke..." ) ) ;
68
68
69
69
const string input = "<div>Hello World</div>" ;
@@ -116,7 +116,7 @@ public void ShouldTransformJsxIfFileCacheHashInvalid()
116
116
_environment . Setup ( x => x . ExecuteWithLargerStackIfRequired < JavaScriptWithSourceMap > (
117
117
"ReactNET_transform_sourcemap" ,
118
118
It . IsAny < string > ( ) ,
119
- false
119
+ It . IsAny < bool > ( )
120
120
) ) . Returns ( new JavaScriptWithSourceMap { Code = "React.DOM.div('Hello World')" } ) ;
121
121
122
122
var result = _jsxTransformer . TransformJsxFile ( "foo.jsx" ) ;
@@ -132,7 +132,7 @@ public void ShouldTransformJsxIfNoCache()
132
132
_environment . Setup ( x => x . ExecuteWithLargerStackIfRequired < JavaScriptWithSourceMap > (
133
133
"ReactNET_transform_sourcemap" ,
134
134
It . IsAny < string > ( ) ,
135
- false
135
+ It . IsAny < bool > ( )
136
136
) ) . Returns ( new JavaScriptWithSourceMap { Code = "React.DOM.div('Hello World')" } ) ;
137
137
138
138
var result = _jsxTransformer . TransformJsxFile ( "foo.jsx" ) ;
@@ -146,7 +146,7 @@ public void ShouldSaveTransformationResult()
146
146
_environment . Setup ( x => x . ExecuteWithLargerStackIfRequired < JavaScriptWithSourceMap > (
147
147
"ReactNET_transform_sourcemap" ,
148
148
It . IsAny < string > ( ) ,
149
- false
149
+ It . IsAny < bool > ( )
150
150
) ) . Returns ( new JavaScriptWithSourceMap { Code = "React.DOM.div('Hello World')" } ) ;
151
151
152
152
string result = null ;
0 commit comments