Makelore 2.0 initial clean snapshot

This commit is contained in:
inman
2026-07-29 17:22:35 +08:00
commit b8ca3f8eea
694 changed files with 139782 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { readFileSync } from 'node:fs';
import { join } from 'node:path';
import { describe, expect, it } from 'vitest';
describe('macOS media entitlements', () => {
it('allows packaged NianCode builds to request microphone input', () => {
const entitlements = readFileSync(join(process.cwd(), 'entitlements.mac.plist'), 'utf8');
expect(entitlements).toMatch(
/<key>com\.apple\.security\.device\.audio-input<\/key>\s*<true\/>/,
);
});
});