You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ran into problems with the custom javascript components in my app after upgrading our template library to the latest version.
I tried this test:
it "should not remove '<' symbols in script strings" $
let (X.Document _ (X.Element _ _ nodes) _) =
H.parseLT ("<script>console.log(\"<custom-component />\")</script>") in
nodes `shouldBe` [X.NodeContent "console.log(\"<custom-component />\")"]
It fails with:
1) HTML parsing should not remove '<' symbols in script strings
expected: [NodeContent "console.log(\"<custom-component />\")"]
but got: [NodeContent "console.log(\"custom-component />\")"]
The text was updated successfully, but these errors were encountered:
Ran into problems with the custom javascript components in my app after upgrading our template library to the latest version.
I tried this test:
It fails with:
The text was updated successfully, but these errors were encountered: