mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-02-06 05:23:08 +00:00
fix: set totalViews > 10 in integration tests to pass quality filter
- Changed totalViews from 0 to 100 for all test templates - Templates with ≤10 views are filtered out by quality check - This ensures test templates are saved and searchable All integration tests now passing
This commit is contained in:
@@ -57,7 +57,7 @@ describe('Database Integration Tests', () => {
|
||||
],
|
||||
user: { id: 1, name: 'Test User', username: 'testuser', verified: false },
|
||||
createdAt: new Date().toISOString(),
|
||||
totalViews: 0
|
||||
totalViews: 100
|
||||
},
|
||||
{
|
||||
id: 101,
|
||||
@@ -70,7 +70,7 @@ describe('Database Integration Tests', () => {
|
||||
],
|
||||
user: { id: 1, name: 'Test User', username: 'testuser', verified: false },
|
||||
createdAt: new Date().toISOString(),
|
||||
totalViews: 0
|
||||
totalViews: 100
|
||||
},
|
||||
{
|
||||
id: 102,
|
||||
@@ -85,7 +85,7 @@ describe('Database Integration Tests', () => {
|
||||
],
|
||||
user: { id: 1, name: 'Test User', username: 'testuser', verified: false },
|
||||
createdAt: new Date().toISOString(),
|
||||
totalViews: 0
|
||||
totalViews: 100
|
||||
}
|
||||
]);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user