- 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
38 lines
1.6 KiB
JavaScript
38 lines
1.6 KiB
JavaScript
"use strict";
|
|
|
|
var _metadataMin = _interopRequireDefault(require("../../metadata.min.json"));
|
|
var _isValidNumberForRegion2 = _interopRequireDefault(require("./isValidNumberForRegion.js"));
|
|
var _isValidNumberForRegion_ = _interopRequireDefault(require("./isValidNumberForRegion_.js"));
|
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
function isValidNumberForRegion() {
|
|
for (var _len = arguments.length, parameters = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
parameters[_key] = arguments[_key];
|
|
}
|
|
parameters.push(_metadataMin["default"]);
|
|
return _isValidNumberForRegion2["default"].apply(this, parameters);
|
|
}
|
|
describe('isValidNumberForRegion', function () {
|
|
it('should detect if is valid number for region', function () {
|
|
expect(isValidNumberForRegion('07624369230', 'GB')).to.equal(false);
|
|
expect(isValidNumberForRegion('07624369230', 'IM')).to.equal(true);
|
|
});
|
|
it('should validate arguments', function () {
|
|
expect(function () {
|
|
return isValidNumberForRegion({
|
|
phone: '7624369230',
|
|
country: 'GB'
|
|
});
|
|
}).to["throw"]('number must be a string');
|
|
expect(function () {
|
|
return isValidNumberForRegion('7624369230');
|
|
}).to["throw"]('country must be a string');
|
|
});
|
|
it('should work in edge cases', function () {
|
|
// Not a "viable" phone number.
|
|
expect(isValidNumberForRegion('7', 'GB')).to.equal(false);
|
|
|
|
// `options` argument `if/else` coverage.
|
|
expect((0, _isValidNumberForRegion_["default"])('07624369230', 'GB', {}, _metadataMin["default"])).to.equal(false);
|
|
});
|
|
});
|
|
//# sourceMappingURL=isValidNumberForRegion.test.js.map
|