Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed Oct 25, 2024
1 parent d8d9577 commit 459a883
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/@biomejs/backend-jsonrpc/tests/workspace.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe("Workspace API", () => {
await workspace.openFile({
path: {
path: "test.js",
was_written: false,
wasWritten: false,
kind: ["handleable"],
},
content: "statement()",
Expand All @@ -30,7 +30,7 @@ describe("Workspace API", () => {
const printed = await workspace.formatFile({
path: {
path: "test.js",
was_written: false,
wasWritten: false,
kind: ["handleable"],
},
});
Expand All @@ -40,7 +40,7 @@ describe("Workspace API", () => {
await workspace.closeFile({
path: {
path: "test.js",
was_written: false,
wasWritten: false,
kind: ["handleable"],
},
});
Expand Down

0 comments on commit 459a883

Please sign in to comment.