Skip to content

Commit

Permalink
chore: add @ts-ignore for access private method
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshinorin committed Dec 28, 2024
1 parent 5dd6a14 commit 17e80d2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/test/suite/extensions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ describe("Default config test", () => {
// execute private method
assert.strictEqual(
config.get("defaultPathStyle"),
//@ts-ignore
currentFile.config.defaultPathStyle,
);
});
Expand All @@ -29,6 +30,7 @@ describe("Default config test", () => {
// execute private method
assert.strictEqual(
config.get("priorityInStatusBar"),
//@ts-ignore
currentFile.config.priorityInStatusBar,
);
});
Expand All @@ -38,6 +40,7 @@ describe("Default config test", () => {
// execute private method
assert.strictEqual(
config.get("defaultPathStartsFrom"),
//@ts-ignore
currentFile.config.defaultPathStartsFrom,
);
});
Expand Down

0 comments on commit 17e80d2

Please sign in to comment.