lion/packages/input-iban/test/formatters.test.js

13 lines
347 B
JavaScript

import { expect } from '@open-wc/testing';
import { formatIBAN } from '../src/formatters.js';
describe('formatIBAN', () => {
it('formats the IBAN', () => {
expect(formatIBAN('NL17INGB0002822608')).to.equal('NL17 INGB 0002 8226 08');
});
it('returns `` if no value is given', () => {
expect(formatIBAN('')).to.equal('');
});
});