fix: resolve workspace integration blockers (#5)

This commit is contained in:
2026-07-29 10:01:17 +09:00
parent 3279ac099e
commit cadbd5fb60
37 changed files with 1817 additions and 73 deletions
+14
View File
@@ -0,0 +1,14 @@
import { readFileSync } from 'node:fs';
import { resolve } from 'node:path';
import { describe, expect, it } from 'vitest';
describe('canonical documentation', () => {
it('keeps the served 2D module map identical to docs source', () => {
const canonical = readFileSync(resolve('docs/modules-dwg-dxf.html'));
const served = readFileSync(
resolve('apps/viewer-2d-sample/public/docs/modules-dwg-dxf.html'),
);
expect(served.equals(canonical)).toBe(true);
});
});