aboutsummaryrefslogtreecommitdiff
path: root/packages/merchant-backoffice-ui/tests/functions/regex.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/merchant-backoffice-ui/tests/functions/regex.test.ts')
-rw-r--r--packages/merchant-backoffice-ui/tests/functions/regex.test.ts32
1 files changed, 16 insertions, 16 deletions
diff --git a/packages/merchant-backoffice-ui/tests/functions/regex.test.ts b/packages/merchant-backoffice-ui/tests/functions/regex.test.ts
index 12a318c3d..d866a13a0 100644
--- a/packages/merchant-backoffice-ui/tests/functions/regex.test.ts
+++ b/packages/merchant-backoffice-ui/tests/functions/regex.test.ts
@@ -14,10 +14,10 @@
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
- /**
- *
- * @author Sebastian Javier Marchano (sebasjm)
- */
+/**
+*
+* @author Sebastian Javier Marchano (sebasjm)
+*/
import { AMOUNT_REGEX, PAYTO_REGEX } from "../../src/utils/constants.js";
@@ -29,11 +29,11 @@ describe('payto uri format', () => {
'payto://void/?amount=EUR:10.5',
'payto://ilp/g.acme.bob'
]
-
- test('should be valid', () => {
+
+ it('should be valid', () => {
valids.forEach(v => expect(v).toMatch(PAYTO_REGEX))
});
-
+
const invalids = [
// has two question marks
'payto://iban/DE75?512108001245126199?amount=EUR:200.0&message=hello',
@@ -46,10 +46,10 @@ describe('payto uri format', () => {
// payto:// is incomplete
'payto: //ilp/g.acme.bob'
]
-
- test('should not be valid', () => {
+
+ it('should not be valid', () => {
invalids.forEach(v => expect(v).not.toMatch(PAYTO_REGEX))
- });
+ });
})
describe('amount format', () => {
@@ -62,11 +62,11 @@ describe('amount format', () => {
'ARSCOL:10',
'THISISTHEMOTHERCOIN:1,000,000.123,123',
]
-
- test('should be valid', () => {
+
+ it('should be valid', () => {
valids.forEach(v => expect(v).toMatch(AMOUNT_REGEX))
});
-
+
const invalids = [
//no currency name
':10',
@@ -79,9 +79,9 @@ describe('amount format', () => {
//missing value
'USD:',
]
-
- test('should not be valid', () => {
+
+ it('should not be valid', () => {
invalids.forEach(v => expect(v).not.toMatch(AMOUNT_REGEX))
- });
+ });
}) \ No newline at end of file