Skip to content

Commit

Permalink
chore: i don't know what these changes are supposed to accomplish but…
Browse files Browse the repository at this point in the history
… somebody told me to make them.
  • Loading branch information
favna committed Feb 2, 2025
1 parent b1fc27f commit 3b1f448
Show file tree
Hide file tree
Showing 3 changed files with 8,888 additions and 9,119 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/vue": "^8.1.0",
"@types/lodash": "^4.17.15",
"@types/node": "^20.16.5",
"@types/node": "^20.17.16",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/browser": "2.0.5",
"@vitest/coverage-istanbul": "2.0.5",
"@vitest/browser": "3.0.4",
"@vitest/coverage-istanbul": "3.0.4",
"cz-conventional-changelog": "^3.3.0",
"esbuild-plugins-node-modules-polyfill": "^1.6.8",
"eslint": "^8.57.1",
Expand All @@ -68,10 +68,10 @@
"rimraf": "^6.0.1",
"tsup": "^8.3.6",
"typedoc": "^0.25.13",
"typedoc-json-parser": "^10.1.5",
"typedoc-json-parser": "^10.2.0",
"typescript": "~5.4.5",
"vite-plugin-node-polyfills": "^0.23.0",
"vitest": "2.0.5",
"vitest": "3.0.4",
"vue": "^3.5.13"
},
"repository": {
Expand Down
12 changes: 6 additions & 6 deletions tests/unit/validators/typedArray.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ describe.each(['custom message', undefined])('TypedArray (%s)', (message) => {
's.typedArray(T).byteLengthRange()',
message ?? 'Invalid Typed Array byte length',
input,
'expected.byteLength >= 10 AND <= 20'
'expected.byteLength >= 10 && expected.byteLength < 20'
)
);
});
Expand All @@ -421,7 +421,7 @@ describe.each(['custom message', undefined])('TypedArray (%s)', (message) => {
's.typedArray(T).lengthRange()',
message ?? 'Invalid Typed Array length',
input,
'expected.length >= 10 AND <= 20'
'expected.length >= 10 && expected.length < 20'
)
);
});
Expand All @@ -441,7 +441,7 @@ describe.each(['custom message', undefined])('TypedArray (%s)', (message) => {
's.typedArray(T).byteLengthRangeInclusive()',
message ?? 'Invalid Typed Array byte length',
input,
'expected.byteLength >= 10 AND <= 20'
'expected.byteLength >= 10 && expected.byteLength <= 20'
)
);
});
Expand All @@ -459,7 +459,7 @@ describe.each(['custom message', undefined])('TypedArray (%s)', (message) => {
's.typedArray(T).lengthRangeInclusive()',
message ?? 'Invalid Typed Array length',
input,
'expected.length >= 10 AND <= 20'
'expected.length >= 10 && expected.length <= 20'
)
);
});
Expand All @@ -479,7 +479,7 @@ describe.each(['custom message', undefined])('TypedArray (%s)', (message) => {
's.typedArray(T).byteLengthRangeExclusive()',
message ?? 'Invalid Typed Array byte length',
input,
'expected.byteLength > 10 AND < 20'
'expected.byteLength > 10 && expected.byteLength < 20'
)
);
});
Expand All @@ -497,7 +497,7 @@ describe.each(['custom message', undefined])('TypedArray (%s)', (message) => {
's.typedArray(T).lengthRangeExclusive()',
message ?? 'Invalid Typed Array length',
input,
'expected.length > 10 AND < 20'
'expected.length > 10 && expected.length < 20'
)
);
});
Expand Down
Loading

0 comments on commit 3b1f448

Please sign in to comment.