mirror of
https://github.com/Jeuners/ECC.git
synced 2026-09-09 15:02:30 +02:00
test: match published claude plugin name
This commit is contained in:
parent
94e8f29d19
commit
1b17c5c9d8
1 changed files with 5 additions and 5 deletions
|
|
@ -178,8 +178,8 @@ test('claude plugin.json version matches package.json', () => {
|
|||
assert.strictEqual(claudePlugin.version, expectedVersion);
|
||||
});
|
||||
|
||||
test('claude plugin.json uses short plugin slug', () => {
|
||||
assert.strictEqual(claudePlugin.name, 'ecc');
|
||||
test('claude plugin.json uses published plugin name', () => {
|
||||
assert.strictEqual(claudePlugin.name, 'everything-claude-code');
|
||||
});
|
||||
|
||||
test('claude plugin.json agents is an array', () => {
|
||||
|
|
@ -248,10 +248,10 @@ test('claude marketplace.json keeps only Claude-supported top-level keys', () =>
|
|||
}
|
||||
});
|
||||
|
||||
test('claude marketplace.json has plugins array with a short ecc plugin entry', () => {
|
||||
test('claude marketplace.json has plugins array with the published plugin entry', () => {
|
||||
assert.ok(Array.isArray(claudeMarketplace.plugins) && claudeMarketplace.plugins.length > 0, 'Expected plugins array');
|
||||
assert.strictEqual(claudeMarketplace.name, 'ecc');
|
||||
assert.strictEqual(claudeMarketplace.plugins[0].name, 'ecc');
|
||||
assert.strictEqual(claudeMarketplace.name, 'everything-claude-code');
|
||||
assert.strictEqual(claudeMarketplace.plugins[0].name, 'everything-claude-code');
|
||||
});
|
||||
|
||||
test('claude marketplace.json plugin version matches package.json', () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue