seogeneratorserver/tests/smoke/config.test.js
StillHammer dbf1a3de8c Add technical plan for multi-format export system
Added plan.md with complete architecture for format-agnostic content generation:
- Support for Markdown, HTML, Plain Text, JSON formats
- New FormatExporter module with neutral data structure
- Integration strategy with existing ContentAssembly and ArticleStorage
- Bonus features: SEO metadata generation, readability scoring, WordPress Gutenberg format
- Implementation roadmap with 4 phases (6h total estimated)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-18 16:14:29 +08:00

13 lines
415 B
JavaScript

import test from 'node:test';
import assert from 'node:assert';
import { requireEnv, DEFAULT_REQUIRED } from '../_helpers/env.js';
test('ENV: required variables present (soft)', () => {
const res = requireEnv(DEFAULT_REQUIRED);
if (!res.ok) {
// soft fail: on avertit mais on n'arrête pas
console.warn('[ENV WARN] Missing env:', res.missing);
}
assert.ok(true, 'Soft check done');
});