docs: align rc1 social launch copy

This commit is contained in:
Affaan Mustafa
2026-04-30 03:56:25 -04:00
committed by Affaan Mustafa
parent 70cc2bb247
commit 63c97b4c26
2 changed files with 46 additions and 21 deletions

View File

@@ -100,6 +100,21 @@ test('release docs do not contain unresolved public-link placeholders', () => {
assert.deepStrictEqual(offenders, []);
});
test('business launch copy stays aligned with the rc.1 public surface', () => {
const source = read('docs/business/social-launch-copy.md');
assert.ok(source.includes('ECC v2.0.0-rc.1'), 'business launch copy should use the rc.1 release');
assert.ok(
source.includes('https://github.com/affaan-m/everything-claude-code'),
'business launch copy should include the public repo URL'
);
assert.ok(
source.includes('docs/releases/2.0.0-rc.1/release-notes.md'),
'business launch copy should link to the rc.1 release notes'
);
assert.ok(!source.includes('<repo-link>'), 'business launch copy should not contain repo placeholders');
assert.ok(!source.includes('v1.8.0'), 'business launch copy should not stay pinned to v1.8.0');
});
test('Hermes setup uses release-candidate wording for the rc.1 surface', () => {
const source = read('docs/HERMES-SETUP.md');
assert.ok(source.includes('Public Release Candidate Scope'));