All skillsEnsure credentials have a credential test (
Skillintermediate
Ensure credentials have a credential test (`@n8n/community-nodes/credential-test-required`)
š¼ This rule is enabled in the following configs: ā `recommended`, āļø `recommendedWithoutN8nCloudSupport`.
Claude Code Knowledge Pack7/10/2026
Overview
Ensure credentials have a credential test (@n8n/community-nodes/credential-test-required)
š¼ This rule is enabled in the following configs: ā
recommended, āļø recommendedWithoutN8nCloudSupport.
š” This rule is manually fixable by editor suggestions.
Rule Details
Ensures that your credentials include a test method to validate user credentials. This helps users verify their credentials are working correctly.
Examples
ā Incorrect
name = 'myApi';
displayName = 'My API';
properties: INodeProperties[] = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
default: '',
},
];
// Missing test method
}
ā Correct
name = 'myApi';
displayName = 'My API';
properties: INodeProperties[] = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
default: '',
},
];
test: ICredentialTestRequest = {
request: {
baseURL: 'https://api.myservice.com',
url: '/user',
method: 'GET',
},
};
}