mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-05-01 06:23:28 +08:00
docs: align rc1 social launch copy
This commit is contained in:
committed by
Affaan Mustafa
parent
70cc2bb247
commit
63c97b4c26
@@ -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'));
|
||||
|
||||
Reference in New Issue
Block a user