Skip to content

Commit

Permalink
yml to yaml in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
joshnygaard committed Jan 2, 2025
1 parent 8d12f8d commit f67d561
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe("Active Problems Table", () => {
let container: HTMLElement;
beforeEach(() => {
const fhirPathFile = fs
.readFileSync("./src/app/api/fhirPath.yml", "utf8")
.readFileSync("./src/app/api/fhirPath.yaml", "utf8")
.toString();
const fhirPathMappings = YAML.load(fhirPathFile) as PathMappings;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ describe("Snapshot test for Procedures (Treatment Details)", () => {
] as unknown as Procedure[];

const fhirPathFile = fs
.readFileSync("./src/app/api/fhirPath.yml", "utf8")
.readFileSync("./src/app/api/fhirPath.yaml", "utf8")
.toString();
const mappings = YAML.load(fhirPathFile) as PathMappings;
const treatmentData = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe("Immunizations Table", () => {
let container: HTMLElement;
beforeAll(() => {
const fhirPathFile = fs
.readFileSync("./src/app/api/fhirPath.yml", "utf8")
.readFileSync("./src/app/api/fhirPath.yaml", "utf8")
.toString();
const fhirPathMappings = YAML.load(fhirPathFile) as PathMappings;

Expand Down

0 comments on commit f67d561

Please sign in to comment.