Skip to content

Commit 3f7f63f

Browse files
committed
fix: test fixup
1 parent f27b77f commit 3f7f63f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parse.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe("get-schema", () => {
2626
it("defaults to looking for openrc.json in cwd", async () => {
2727
expect.assertions(1);
2828
const schema = await parse();
29-
expect(fs.readJson).toHaveBeenCalledWith(`${process.cwd()}/openrpc.json`);
29+
expect(fs.readJson).toHaveBeenCalledWith(`./openrpc.json`);
3030
});
3131

3232
it("handles custom file path", async () => {

0 commit comments

Comments
 (0)