Skip to content
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
2 changes: 1 addition & 1 deletion pkgs/standards/tigrbl/tigrbl/system/docs/lens.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from ...response.stdapi import Response


TIGRBL_LENS_VERSION = "0.0.7"
TIGRBL_LENS_VERSION = "0.0.8"


def _with_leading_slash(path: str) -> str:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ async def test_lens_mountable_on_tigrbl_app_uvicorn():
assert 'id="root"' in response.text
assert 'type="importmap"' in response.text
assert (
'"@tigrbljs/tigrbl-lens": "https://esm.sh/@tigrbljs/tigrbl-lens@0.0.7"'
'"@tigrbljs/tigrbl-lens": "https://esm.sh/@tigrbljs/tigrbl-lens@0.0.8"'
in response.text
)
assert (
'href="https://esm.sh/@tigrbljs/tigrbl-lens@0.0.7/dist/tigrbl-lens.css"'
'href="https://esm.sh/@tigrbljs/tigrbl-lens@0.0.8/dist/tigrbl-lens.css"'
in response.text
)
assert 'import { createRoot } from "react-dom/client";' in response.text
Expand Down
Loading