Skip to content

Commit

Permalink
Merge branch 'next' into infra/unicorn/prefer-array-flat-map
Browse files Browse the repository at this point in the history
  • Loading branch information
xDivisionByZerox authored Oct 8, 2023
2 parents 306ca90 + f1b4489 commit fb4255c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ module.exports = defineConfig({
'unicorn/no-array-push-push': 'off',
'unicorn/no-array-reduce': 'off',
'unicorn/no-await-expression-member': 'off',
'unicorn/no-console-spaces': 'off',
'unicorn/no-for-loop': 'off',
'unicorn/no-hex-escape': 'off',
'unicorn/no-instanceof-array': 'off',
Expand Down
14 changes: 7 additions & 7 deletions test/modules/finance_iban.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ describe('finance_iban', () => {
`${iban.substring(
2,
4
)} must contains only digit in GE IBAN ${ibanFormatted}`
)} must contains only digits in GE IBAN ${ibanFormatted}`
).toMatch(/^\d{2}$/);
expect(
iban.substring(4, 6),
Expand All @@ -70,7 +70,7 @@ describe('finance_iban', () => {
`${iban.substring(
6,
24
)} must contains only characters in GE IBAN ${ibanFormatted}`
)} must contains only digits in GE IBAN ${ibanFormatted}`
).toMatch(/^\d{16}$/);

expect(
Expand Down Expand Up @@ -116,7 +116,7 @@ describe('finance_iban', () => {
`${iban.substring(
2,
4
)} must contains only digit in PK IBAN ${ibanFormated}`
)} must contains only digits in PK IBAN ${ibanFormated}`
).toMatch(/^\d{2}$/);
expect(
iban.substring(4, 8),
Expand Down Expand Up @@ -182,7 +182,7 @@ describe('finance_iban', () => {
`Control key:${iban.substring(
2,
4
)} must contains only digit in PK IBAN ${ibanFormated}`
)} must contains only digits in PK IBAN ${ibanFormated}`
).toMatch(/^\d{2}$/);
expect(
iban.substring(4, 9),
Expand Down Expand Up @@ -252,7 +252,7 @@ describe('finance_iban', () => {
`${iban.substring(
2,
4
)} must contains only digit in AZ IBAN ${ibanFormated}`
)} must contains only digits in AZ IBAN ${ibanFormated}`
).toMatch(/^\d{2}$/);
expect(
iban.substring(4, 8),
Expand All @@ -266,7 +266,7 @@ describe('finance_iban', () => {
`${iban.substring(
8,
28
)} must contains 20 characters in AZ IBAN ${ibanFormated}`
)} must contains 20 digits in AZ IBAN ${ibanFormated}`
).toMatch(/^\d{20}$/);

expect(
Expand Down Expand Up @@ -312,7 +312,7 @@ describe('finance_iban', () => {
`${iban.substring(
2,
22
)} must contains only digit in AZ IBAN ${ibanFormated}`
)} must contains only digits in AZ IBAN ${ibanFormated}`
).toMatch(/^\d{20}$/);

expect(
Expand Down
4 changes: 2 additions & 2 deletions test/scripts/apidoc/signature.debug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ const methods = loadExampleMethods();
initMarkdownRenderer()
.then(() => {
Object.entries(methods).forEach(([name, method]) => {
console.log('Analyzing: ', name);
console.log('Analyzing:', name);
const result = analyzeSignature(method, '', method.name);
console.log('Result: ', result);
console.log('Result:', result);
});
})
.catch(console.error);

0 comments on commit fb4255c

Please sign in to comment.