Skip to content

Commit

Permalink
fix: Change json file case
Browse files Browse the repository at this point in the history
  • Loading branch information
narze committed Jul 5, 2021
1 parent c5f573b commit 27824ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions test/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ describe("validateLayout", () => {
it("passes structure validation", async () => {
const validJson = JSON.parse(
fs.readFileSync(
path.join(process.cwd(), "input", "manoonchai.json"),
path.join(process.cwd(), "input", "Manoonchai.json"),
"utf8"
)
)
Expand All @@ -18,7 +18,7 @@ describe("validateLayout", () => {

const invalidJson = JSON.parse(
fs.readFileSync(
path.join(process.cwd(), "input", "manoonchai.json"),
path.join(process.cwd(), "input", "Manoonchai.json"),
"utf8"
)
)
Expand All @@ -38,7 +38,7 @@ describe("generateLayout", () => {
it("receives layout json and returns keylayout xml correctly", async () => {
const manoonchaiJson = JSON.parse(
fs.readFileSync(
path.join(process.cwd(), "input", "manoonchai.json"),
path.join(process.cwd(), "input", "Manoonchai.json"),
"utf8"
)
)
Expand Down

0 comments on commit 27824ca

Please sign in to comment.