Skip to content

Commit 300b9ad

Browse files
committed
fix test
1 parent a382dd8 commit 300b9ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/smoke/inspect/inspect-extensions.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
import { assert, assertEquals } from "testing/asserts";
1515

1616
(() => {
17-
const input = "docs/inspect/website-with-extensions";
17+
const input = "docs/inspect/website-with-extensions/extension-test";
1818
const output = "docs/inspect/website-with-extensions.json";
1919
testQuartoCmd(
2020
"inspect",
@@ -26,7 +26,7 @@ import { assert, assertEquals } from "testing/asserts";
2626
assert(existsSync(output));
2727
const json = JSON.parse(Deno.readTextFileSync(output));
2828
assert(json.extensions.length === 1);
29-
assertObjectMatch(json.extensions[0].title, "Auto Dark Mode");
29+
assertEquals(json.extensions[0].title, "Auto Dark Mode");
3030
}
3131
}
3232
],

0 commit comments

Comments
 (0)