29 lines
1019 B
JavaScript
29 lines
1019 B
JavaScript
import test from 'node:test';
|
|
import assert from 'node:assert/strict';
|
|
import { readFileSync } from 'node:fs';
|
|
import { resolve } from 'node:path';
|
|
|
|
function readSource(relativePath) {
|
|
return readFileSync(resolve(process.cwd(), relativePath), 'utf8');
|
|
}
|
|
|
|
test('portal shell app renders health summary component and admin entry controls', () => {
|
|
const source = readSource('src/portal-shell/App.vue');
|
|
|
|
assert.match(source, /import HealthStatus from '\.\/components\/HealthStatus\.vue';/);
|
|
assert.match(source, /<HealthStatus \/>/);
|
|
|
|
assert.match(source, /管理後台/);
|
|
assert.match(source, /管理員登入/);
|
|
assert.match(source, /登出/);
|
|
assert.match(source, /adminLinks\?\.pages/);
|
|
});
|
|
|
|
test('portal shell app keeps fallback notice and route sync wiring', () => {
|
|
const source = readSource('src/portal-shell/App.vue');
|
|
|
|
assert.doesNotMatch(source, /class="mode-badge"/);
|
|
assert.match(source, /consumeNavigationNotice/);
|
|
assert.match(source, /syncNavigationRoutes\(payload\.drawers/);
|
|
});
|