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,11 @@
import { describe, expect, it } from 'vitest';
import { buildProviderAccountId } from '@/lib/provider-accounts';
describe('buildProviderAccountId', () => {
it('generates a distinct account id when vendor metadata is unavailable', () => {
const accountId = buildProviderAccountId('moonshot', null, []);
expect(accountId).toMatch(/^moonshot-/);
expect(accountId).not.toBe('moonshot');
});
});