Skip to content

Commit 15ca307

Browse files
committed
Moved comment
1 parent 95e5b12 commit 15ca307

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/helpers/valueSetUtils.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ describe('valueSetUtils', () => {
4747

4848
describe('checkCodeInVs', () => {
4949
const includesCode = 'C00.0';
50-
// Note: Expansions are a superset of includes
5150
const expansionCode = 'C00.1';
5251
const missingCode = 'C12.34';
5352
const vsPath = path.resolve(__dirname, './fixtures/valueset-without-expansion.json');
@@ -69,6 +68,7 @@ describe('valueSetUtils', () => {
6968
test('Should return true if the code is in the VS expansion', () => {
7069
expect(checkCodeInVs(expansionCode, vsWithExpansionPath, vsTypes.json)).toBeTruthy();
7170
});
71+
// Note: Expansions are a superset of includes; this is why we dont test "when an `includesCode` isn't in the expansion ValueSet"
7272
test('Should return false if the code is missing from both', () => {
7373
expect(checkCodeInVs(missingCode, vsPath, vsTypes.json)).toBeFalsy();
7474
expect(checkCodeInVs(missingCode, vsWithExpansionPath, vsTypes.json)).toBeFalsy();

0 commit comments

Comments
 (0)