We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f27b77f commit 3f7f63fCopy full SHA for 3f7f63f
src/parse.test.ts
@@ -26,7 +26,7 @@ describe("get-schema", () => {
26
it("defaults to looking for openrc.json in cwd", async () => {
27
expect.assertions(1);
28
const schema = await parse();
29
- expect(fs.readJson).toHaveBeenCalledWith(`${process.cwd()}/openrpc.json`);
+ expect(fs.readJson).toHaveBeenCalledWith(`./openrpc.json`);
30
});
31
32
it("handles custom file path", async () => {
0 commit comments