// SPDX-License-Identifier: LicenseRef-Commercial // Commercial-only tests — excluded from community test runs. import { describe, it, expect } from 'vitest'; describe('Pro Edition', () => { it('commercial test suite is reachable', () => { expect(true).toBe(true); }); it('AGOR_EDITION env var is set to pro when running commercial tests', () => { expect(process.env.AGOR_EDITION).toBe('pro'); }); });