fix: test formatting

This commit is contained in:
StevanFreeborn
2023-02-01 23:45:14 -06:00
parent f7229b5344
commit e6cde7fbe7
27 changed files with 156 additions and 82 deletions
+7 -7
View File
@@ -187,23 +187,23 @@ describe('ArgumentValidator', function () {
expect(ArgumentValidator.isValidPageSize(undefined)).to.be.false;
});
it('should return false when the value is greater than 1000', function (){
it('should return false when the value is greater than 1000', function () {
expect(ArgumentValidator.isValidPageSize(1001)).to.be.false;
});
it('should return false when the value is less than 1', function (){
it('should return false when the value is less than 1', function () {
expect(ArgumentValidator.isValidPageSize(0)).to.be.false;
});
it('should return true when the value is 1', function (){
it('should return true when the value is 1', function () {
expect(ArgumentValidator.isValidPageSize(1)).to.be.true;
});
it('should return true when the value is 1000', function (){
it('should return true when the value is 1000', function () {
expect(ArgumentValidator.isValidPageSize(1000)).to.be.true;
});
it('should return true when the value is 500', function (){
it('should return true when the value is 500', function () {
expect(ArgumentValidator.isValidPageSize(500)).to.be.true;
});
});
@@ -225,11 +225,11 @@ describe('ArgumentValidator', function () {
expect(ArgumentValidator.isValidPageNumber(undefined)).to.be.false;
});
it('should return false when the value is less than 1', function (){
it('should return false when the value is less than 1', function () {
expect(ArgumentValidator.isValidPageNumber(0)).to.be.false;
});
it('should return true when the value is 1', function (){
it('should return true when the value is 1', function () {
expect(ArgumentValidator.isValidPageNumber(1)).to.be.true;
});
});