Skip to content

Commit

Permalink
fix: fix tsc build
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelgerber committed Aug 7, 2024
1 parent f072bf1 commit d31e334
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions site/multiDim/MultiDimDataPageConfig.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { MultiDimDataPageConfig } from "./MultiDimDataPageConfig.js"
import YAML from "yaml"

it("fromObject", () => {
const config = MultiDimDataPageConfig.fromObject({ name: "Test" } as any)
expect(config.config.name).toBe("Test")
const config = MultiDimDataPageConfig.fromObject({ title: "Test" } as any)
expect(config.config.title).toBe("Test")
})

describe("methods", () => {
Expand Down

0 comments on commit d31e334

Please sign in to comment.