Skip to content

Commit

Permalink
Update FPL dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
mint-thompson committed Oct 20, 2023
1 parent 8ee9d29 commit e747a34
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
"chalk": "^3.0.0",
"commander": "^8.2.0",
"fhir": "^4.9.0",
"fhir-package-loader": "^0.6.0",
"fhir-package-loader": "^0.7.0",
"fs-extra": "^8.1.0",
"html-minifier-terser": "5.1.1",
"https-proxy-agent": "^5.0.0",
Expand Down
8 changes: 4 additions & 4 deletions test/fhirdefs/FHIRDefinitions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ describe('FHIRDefinitions', () => {
});
});

it('should find definitions by the type order supplied', () => {
it('should find definitions by the enforced type order', () => {
// NOTE: There are two things with id allergyintolerance-clinical (the ValueSet and CodeSystem)
const allergyStatusValueSetByID = defs.fishForFHIR(
'allergyintolerance-clinical',
Expand All @@ -310,7 +310,7 @@ describe('FHIRDefinitions', () => {
Type.CodeSystem,
Type.ValueSet
);
expect(allergyStatusCodeSystemByID.resourceType).toBe('CodeSystem');
expect(allergyStatusCodeSystemByID.resourceType).toBe('ValueSet');
});

it('should not find the definition when the type is not requested', () => {
Expand Down Expand Up @@ -801,7 +801,7 @@ describe('FHIRDefinitions', () => {
});
});

it('should find definitions by the type order supplied', () => {
it('should find definitions by the enforced type order', () => {
// NOTE: There are two things with id allergyintolerance-clinical (the ValueSet and CodeSystem)
const allergyStatusValueSetByID = defs.fishForMetadata(
'allergyintolerance-clinical',
Expand All @@ -818,7 +818,7 @@ describe('FHIRDefinitions', () => {
Type.ValueSet
);
expect(allergyStatusCodeSystemByID.url).toBe(
'http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical'
'http://hl7.org/fhir/ValueSet/allergyintolerance-clinical'
);
});

Expand Down

0 comments on commit e747a34

Please sign in to comment.