Some checks failed
Deploy Production / Build, push, deploy, verify (push) Has been cancelled
- 移除已迁移业务 AppData 运行时 fallback,改走领域 API 和关系表快读 - 补齐需求产品负责人、版本计划任务 JSON 和成员 username 回填迁移 - 统一治理字典入口,并补充 AI provider、数据源契约和领域服务测试 Co-Authored-By: Codex GPT-5 <codex@openai.com>
13 lines
486 B
TypeScript
13 lines
486 B
TypeScript
import assert from 'node:assert/strict';
|
|
import { readFileSync } from 'node:fs';
|
|
import { join } from 'node:path';
|
|
import test from 'node:test';
|
|
|
|
test('product store no longer persists product tree through products-overview AppData', () => {
|
|
const source = readFileSync(join(process.cwd(), 'stores/useProductStore.ts'), 'utf8');
|
|
|
|
assert.doesNotMatch(source, /loadServerData/);
|
|
assert.doesNotMatch(source, /saveServerData/);
|
|
assert.doesNotMatch(source, /products-overview/);
|
|
});
|