Features: - Full RBAC with 3 roles (superadmin/manager/contributor) - Ownership tracking on posts, tasks, campaigns, projects - Task system: assign to anyone, filter combobox, visibility scoping - Team members merged into users table (single source of truth) - Post thumbnails on kanban cards from attachments - Publication link validation before publishing - Interactive onboarding tutorial with Settings restart - Full Arabic/English i18n with RTL layout support - Language toggle in sidebar, IBM Plex Sans Arabic font - Brand-based visibility filtering for non-superadmins - Manager can only create contributors - Profile completion flow for new users - Cookie-based sessions (express-session + SQLite)
25 lines
586 B
JavaScript
25 lines
586 B
JavaScript
'use strict';
|
|
|
|
var parse = require('../');
|
|
var test = require('tape');
|
|
|
|
test('dotted alias', function (t) {
|
|
var argv = parse(['--a.b', '22'], { default: { 'a.b': 11 }, alias: { 'a.b': 'aa.bb' } });
|
|
t.equal(argv.a.b, 22);
|
|
t.equal(argv.aa.bb, 22);
|
|
t.end();
|
|
});
|
|
|
|
test('dotted default', function (t) {
|
|
var argv = parse('', { default: { 'a.b': 11 }, alias: { 'a.b': 'aa.bb' } });
|
|
t.equal(argv.a.b, 11);
|
|
t.equal(argv.aa.bb, 11);
|
|
t.end();
|
|
});
|
|
|
|
test('dotted default with no alias', function (t) {
|
|
var argv = parse('', { default: { 'a.b': 11 } });
|
|
t.equal(argv.a.b, 11);
|
|
t.end();
|
|
});
|