20 lines
1.1 KiB
JavaScript
20 lines
1.1 KiB
JavaScript
|
|
import assert from 'node:assert/strict'
|
||
|
|
import { readFile } from 'node:fs/promises'
|
||
|
|
import { fileURLToPath } from 'node:url'
|
||
|
|
import path from 'node:path'
|
||
|
|
import { parse as parseSfc } from '@vue/compiler-sfc'
|
||
|
|
|
||
|
|
const scriptDir = path.dirname(fileURLToPath(import.meta.url))
|
||
|
|
const viewPath = path.resolve(scriptDir, '../src/views/data-process/DataProcessListView.vue')
|
||
|
|
const source = await readFile(viewPath, 'utf8')
|
||
|
|
const { descriptor, errors } = parseSfc(source, { filename: viewPath })
|
||
|
|
|
||
|
|
assert.equal(errors.length, 0, `数据处理任务列表模板无法解析:${errors[0]}`)
|
||
|
|
assert.ok(descriptor.template?.content.trim(), '数据处理任务列表缺少可渲染模板')
|
||
|
|
assert.match(source, /:data="dataList"/, '任务表格必须直接展示完整任务数据')
|
||
|
|
assert.doesNotMatch(source, /activeTab|filteredDataList/, '不应保留状态切换筛选逻辑')
|
||
|
|
assert.doesNotMatch(source, /全部任务|处理中|已完成/, '不应保留状态切换按钮文案')
|
||
|
|
assert.doesNotMatch(source, /capsule-tabs|capsule-tab-item/, '不应保留状态切换专用样式')
|
||
|
|
|
||
|
|
console.log('数据处理任务列表状态切换移除回归检查通过')
|