We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4c73590 + 69d13c4 commit 9dc1d79Copy full SHA for 9dc1d79
src/React.Tests/Core/BabelTransformerTests.cs
@@ -111,7 +111,7 @@ public void ShouldTransformJsxIfFileCacheHashInvalid()
111
)).Returns(new JavaScriptWithSourceMap { Code = "React.DOM.div('Hello World')" });
112
113
var result = _babel.TransformFile("foo.jsx");
114
- Assert.AreEqual("React.DOM.div('Hello World')", result);
+ StringAssert.EndsWith("React.DOM.div('Hello World')", result);
115
}
116
117
[Test]
@@ -128,7 +128,7 @@ public void ShouldTransformJsxIfNoCache()
128
129
130
131
132
133
134
0 commit comments