Skip to content
Merged
2 changes: 1 addition & 1 deletion QsNet.Comparison/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"license": "BSD-3-Clause",
"packageManager": "pnpm@11.1.3",
"dependencies": {
"qs": "^6.15.1"
"qs": "^6.15.2"
}
}
10 changes: 5 additions & 5 deletions QsNet.Comparison/js/pnpm-lock.yaml

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

6 changes: 5 additions & 1 deletion QsNet.Tests/DecodeOptionsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public void CopyWith_NoModifications_ShouldReturnIdenticalOptions()
InterpretNumericEntities = true,
ParameterLimit = 200,
ParseLists = true,
StrictMerge = false,
StrictNullHandling = true
};

Expand All @@ -49,6 +50,7 @@ public void CopyWith_NoModifications_ShouldReturnIdenticalOptions()
newOptions.InterpretNumericEntities.Should().BeTrue();
newOptions.ParameterLimit.Should().Be(200);
newOptions.ParseLists.Should().BeTrue();
newOptions.StrictMerge.Should().BeFalse();
newOptions.StrictNullHandling.Should().BeTrue();

newOptions.Should().BeEquivalentTo(options);
Expand Down Expand Up @@ -91,6 +93,7 @@ public void CopyWith_WithModifications_ShouldReturnModifiedOptions()
interpretNumericEntities: false,
parameterLimit: 200,
parseLists: true,
strictMerge: false,
strictNullHandling: false
);

Expand All @@ -108,6 +111,7 @@ public void CopyWith_WithModifications_ShouldReturnModifiedOptions()
newOptions.InterpretNumericEntities.Should().BeFalse();
newOptions.ParameterLimit.Should().Be(200);
newOptions.ParseLists.Should().BeTrue();
newOptions.StrictMerge.Should().BeFalse();
newOptions.StrictNullHandling.Should().BeFalse();
}

Expand Down Expand Up @@ -362,4 +366,4 @@ public void ShouldNotThrowForUtf8OrLatin1CodePageWithCustomFallbacks()
utf8Act.Should().NotThrow();
latin1Act.Should().NotThrow();
}
}
}
Loading
Loading