Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Export try_get_exact_pluto_version API #142

Merged
merged 1 commit into from
Aug 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/PlutoSliderServer.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 2 additions & 0 deletions test/static export.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
Loading