Files
headroom/frontend/node_modules/libphonenumber-js/build/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

45 lines
1.3 KiB
JavaScript

"use strict";
var _RFC = require("./RFC3966.js");
describe('RFC3966', function () {
it('should format', function () {
expect(function () {
return (0, _RFC.formatRFC3966)({
number: '123'
});
}).to["throw"]('expects "number" to be in E.164 format');
expect((0, _RFC.formatRFC3966)({})).to.equal('');
expect((0, _RFC.formatRFC3966)({
number: '+78005553535'
})).to.equal('tel:+78005553535');
expect((0, _RFC.formatRFC3966)({
number: '+78005553535',
ext: '123'
})).to.equal('tel:+78005553535;ext=123');
});
it('should parse', function () {
expect((0, _RFC.parseRFC3966)('tel:+78005553535')).to.deep.equal({
number: '+78005553535'
});
expect((0, _RFC.parseRFC3966)('tel:+78005553535;ext=123')).to.deep.equal({
number: '+78005553535',
ext: '123'
});
// With `phone-context`
expect((0, _RFC.parseRFC3966)('tel:8005553535;ext=123;phone-context=+7')).to.deep.equal({
number: '+78005553535',
ext: '123'
});
// "Domain contexts" are ignored
expect((0, _RFC.parseRFC3966)('tel:8005553535;ext=123;phone-context=www.leningrad.spb.ru')).to.deep.equal({
number: '8005553535',
ext: '123'
});
// Not a viable phone number.
expect((0, _RFC.parseRFC3966)('tel:3')).to.deep.equal({});
});
});
//# sourceMappingURL=RFC3966.test.js.map