mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(cli): Fix community nodes tests on Postgres and MySQL (#3861)
* 📘 Fix type * ⚡ Adjust constants * 🧪 Skip failing pagination fix * 🧪 Make truncation sequential
This commit is contained in:
@@ -58,7 +58,6 @@ export const MAPPING_TABLES_TO_CLEAR: Record<string, string[] | undefined> = {
|
||||
Tag: ['workflows_tags'],
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Name of the connection used for creating and dropping a Postgres DB
|
||||
* for each suite test run.
|
||||
@@ -71,16 +70,15 @@ export const BOOTSTRAP_POSTGRES_CONNECTION_NAME: Readonly<string> = 'n8n_bs_post
|
||||
*/
|
||||
export const BOOTSTRAP_MYSQL_CONNECTION_NAME: Readonly<string> = 'n8n_bs_mysql';
|
||||
|
||||
/**
|
||||
* Timeout (in milliseconds) to account for fake SMTP service being slow to respond.
|
||||
*/
|
||||
export const SMTP_TEST_TIMEOUT = 30_000;
|
||||
export const COMMUNITY_PACKAGE_VERSION = {
|
||||
CURRENT: '0.1.0',
|
||||
UPDATED: '0.2.0',
|
||||
};
|
||||
|
||||
/**
|
||||
* Nodes
|
||||
*/
|
||||
export const CURRENT_PACKAGE_VERSION = '0.1.0';
|
||||
export const UPDATED_PACKAGE_VERSION = '0.2.0';
|
||||
export const COMMUNITY_NODE_VERSION = {
|
||||
CURRENT: 1,
|
||||
UPDATED: 2,
|
||||
};
|
||||
|
||||
/**
|
||||
* Timeout (in milliseconds) to account for DB being slow to initialize.
|
||||
|
||||
Reference in New Issue
Block a user