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/); });