Skip to content

Commit c04aa90

Browse files
committed
🐛 Forgot to export `pushPageTransition
1 parent 522c36c commit c04aa90

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

browser/dom/mod.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ export * from "./cache.ts";
1111
export * from "./cursor.ts";
1212
export * from "./selection.ts";
1313
export * from "./stores.ts";
14+
export * from "./pushPageTransition.ts";

title.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ import { assertStrictEquals } from "./deps/testing.ts";
88

99
Deno.test("toTitleLc()", async (t) => {
1010
await t.step("` ` -> `_`", () => {
11-
assertStrictEquals<string>(toTitleLc("空白入り タイトル"), "空白入り_タイトル");
11+
assertStrictEquals<string>(
12+
toTitleLc("空白入り タイトル"),
13+
"空白入り_タイトル",
14+
);
1215
assertStrictEquals<string>(
1316
toTitleLc(" 前後にも 空白入り _タイトル "),
1417
"_前後にも_空白入り__タイトル_",

0 commit comments

Comments
 (0)