49 lines
2.0 KiB
JavaScript
49 lines
2.0 KiB
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('shell route view uses direct RouterView host (no transition blank-state)', () => {
|
|
const appSource = readSource('src/portal-shell/App.vue');
|
|
assert.match(appSource, /<RouterView \/>/);
|
|
assert.doesNotMatch(appSource, /<Transition name=\"route-fade\" mode=\"out-in\">/);
|
|
});
|
|
|
|
test('Wave A chart components keep autoresize and tooltip configuration', () => {
|
|
const chartFiles = [
|
|
'src/wip-overview/components/ParetoSection.vue',
|
|
'src/qc-gate/components/QcGateChart.vue',
|
|
'src/hold-history/components/DailyTrend.vue',
|
|
'src/hold-history/components/ReasonPareto.vue',
|
|
'src/hold-history/components/DurationChart.vue',
|
|
'src/resource-history/components/TrendChart.vue',
|
|
'src/resource-history/components/StackedChart.vue',
|
|
'src/resource-history/components/HeatmapChart.vue',
|
|
'src/resource-history/components/ComparisonChart.vue',
|
|
];
|
|
|
|
chartFiles.forEach((filePath) => {
|
|
const source = readSource(filePath);
|
|
assert.match(source, /tooltip\s*:/, `missing tooltip config: ${filePath}`);
|
|
assert.match(source, /autoresize/, `missing autoresize lifecycle hook: ${filePath}`);
|
|
});
|
|
});
|
|
|
|
test('QC Gate keeps linked chart-table interaction guards', () => {
|
|
const source = readSource('src/qc-gate/App.vue');
|
|
assert.match(source, /const activeFilter = ref\(null\)/);
|
|
assert.match(source, /const filteredLots = computed\(\(\) =>/);
|
|
assert.match(source, /function handleChartSelect\(filter\)/);
|
|
assert.match(source, /activeFilter\.value = null/);
|
|
});
|
|
|
|
test('resource tooltip lifecycle keeps resize listener cleanup', () => {
|
|
const source = readSource('src/resource-status/components/FloatingTooltip.vue');
|
|
assert.match(source, /window\.addEventListener\('resize', positionTooltip\)/);
|
|
assert.match(source, /window\.removeEventListener\('resize', positionTooltip\)/);
|
|
});
|