- 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
40 lines
1.0 KiB
JavaScript
40 lines
1.0 KiB
JavaScript
var concatMap = require('../');
|
|
var test = require('tape');
|
|
|
|
test('empty or not', function (t) {
|
|
var xs = [ 1, 2, 3, 4, 5, 6 ];
|
|
var ixes = [];
|
|
var ys = concatMap(xs, function (x, ix) {
|
|
ixes.push(ix);
|
|
return x % 2 ? [ x - 0.1, x, x + 0.1 ] : [];
|
|
});
|
|
t.same(ys, [ 0.9, 1, 1.1, 2.9, 3, 3.1, 4.9, 5, 5.1 ]);
|
|
t.same(ixes, [ 0, 1, 2, 3, 4, 5 ]);
|
|
t.end();
|
|
});
|
|
|
|
test('always something', function (t) {
|
|
var xs = [ 'a', 'b', 'c', 'd' ];
|
|
var ys = concatMap(xs, function (x) {
|
|
return x === 'b' ? [ 'B', 'B', 'B' ] : [ x ];
|
|
});
|
|
t.same(ys, [ 'a', 'B', 'B', 'B', 'c', 'd' ]);
|
|
t.end();
|
|
});
|
|
|
|
test('scalars', function (t) {
|
|
var xs = [ 'a', 'b', 'c', 'd' ];
|
|
var ys = concatMap(xs, function (x) {
|
|
return x === 'b' ? [ 'B', 'B', 'B' ] : x;
|
|
});
|
|
t.same(ys, [ 'a', 'B', 'B', 'B', 'c', 'd' ]);
|
|
t.end();
|
|
});
|
|
|
|
test('undefs', function (t) {
|
|
var xs = [ 'a', 'b', 'c', 'd' ];
|
|
var ys = concatMap(xs, function () {});
|
|
t.same(ys, [ undefined, undefined, undefined, undefined ]);
|
|
t.end();
|
|
});
|