We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b35cb37 commit bbeacb7Copy full SHA for bbeacb7
1 file changed
tests/Plotly.NET.ImageExport.Tests/ImageExport.fs
@@ -48,9 +48,14 @@ let ``Image export tests`` =
48
testBase64PNG
49
"Invalid base64 string for Chart.toBase64PNGStringAsync"
50
}
51
- testCase "Chart.toBase64JPGString" <| fun () ->
+ testCase "Chart.toBase64JPGString terminates" <| fun () ->
52
let actual = Chart.Point([1.,1.]) |> Chart.toBase64JPGString()
53
Expect.isTrue (actual.Length > 100) ""
54
-
+ testCase "Chart.toBase64PNGString terminates" <| fun () ->
55
+ let actual = Chart.Point([1.,1.]) |> Chart.toBase64PNGString()
56
+ Expect.isTrue (actual.Length > 100) ""
57
+ testCase "Chart.toSVGString terminates" <| fun () ->
58
+ let actual = Chart.Point([1.,1.]) |> Chart.toSVGString()
59
60
]
61
)
0 commit comments