Files
headroom/frontend/node_modules/libphonenumber-js/source/helpers/RFC3966.test.js
Santhosh Janardhanan de2d83092e feat: Reinitialize frontend with SvelteKit and TypeScript
- Delete old Vite+Svelte frontend
- Initialize new SvelteKit project with TypeScript
- Configure Tailwind CSS v4 + DaisyUI
- Implement JWT authentication with auto-refresh
- Create login page with form validation (Zod)
- Add protected route guards
- Update Docker configuration for single-stage build
- Add E2E tests with Playwright (6/11 passing)
- Fix Svelte 5 reactivity with $state() runes

Known issues:
- 5 E2E tests failing (timing/async issues)
- Token refresh implementation needs debugging
- Validation error display timing
2026-02-17 16:19:59 -05:00

37 lines
1.1 KiB
JavaScript

import { parseRFC3966, formatRFC3966 } from './RFC3966.js'
describe('RFC3966', () => {
it('should format', () => {
expect(() => formatRFC3966({ number: '123' })).to.throw('expects "number" to be in E.164 format')
expect(formatRFC3966({})).to.equal('')
expect(formatRFC3966({ number: '+78005553535' })).to.equal('tel:+78005553535')
expect(formatRFC3966({ number: '+78005553535', ext: '123' })).to.equal('tel:+78005553535;ext=123')
})
it('should parse', () => {
expect(parseRFC3966('tel:+78005553535')).to.deep.equal({
number : '+78005553535'
})
expect(parseRFC3966('tel:+78005553535;ext=123')).to.deep.equal({
number : '+78005553535',
ext : '123'
})
// With `phone-context`
expect(parseRFC3966('tel:8005553535;ext=123;phone-context=+7')).to.deep.equal({
number : '+78005553535',
ext : '123'
})
// "Domain contexts" are ignored
expect(parseRFC3966('tel:8005553535;ext=123;phone-context=www.leningrad.spb.ru')).to.deep.equal({
number : '8005553535',
ext : '123'
})
// Not a viable phone number.
expect(parseRFC3966('tel:3')).to.deep.equal({})
})
})