9 lines
251 B
JavaScript
9 lines
251 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');
|
|
});
|
|
});
|