diff --git a/src/PlutoSliderServer.jl b/src/PlutoSliderServer.jl index fab0498..7bcf2aa 100644 --- a/src/PlutoSliderServer.jl +++ b/src/PlutoSliderServer.jl @@ -4,6 +4,7 @@ using FromFile @from "./MoreAnalysis.jl" import bound_variable_connections_graph @from "./FileHelpers.jl" import find_notebook_files_recursive, list_files_recursive +@from "./Export.jl" import try_get_exact_pluto_version @from "./IndexHTML.jl" import generate_index_html @from "./IndexJSON.jl" import generate_index_json @from "./Actions.jl" import process, diff --git a/test/static export.jl b/test/static export.jl index 94f279c..07f172e 100644 --- a/test/static export.jl +++ b/test/static export.jl @@ -61,6 +61,8 @@ make_test_dir() = jsonstr = read("pluto_export.json", String) json = JSON.parse(jsonstr) @test json["slider_server_url"] === nothing + + @test PlutoSliderServer.try_get_exact_pluto_version() !== nothing end