Skip to content

Commit

Permalink
ci: Remove hard-coded package version in unit tests (no-changelog) (n…
Browse files Browse the repository at this point in the history
  • Loading branch information
netroy authored Aug 14, 2024
1 parent 67a1098 commit 483e324
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import type { SharedWorkflowRepository } from '@/databases/repositories/sharedWo
import type { ProjectRelationRepository } from '@/databases/repositories/projectRelation.repository';
import type { RelayEventMap } from '@/events/relay-event-map';
import type { WorkflowEntity } from '@/databases/entities/WorkflowEntity';
import { N8N_VERSION } from '@/constants';

const flushPromises = async () => await new Promise((resolve) => setImmediate(resolve));

Expand Down Expand Up @@ -694,7 +695,7 @@ describe('TelemetryEventRelay', () => {
is_manual: false,
success: false,
user_id: 'user123',
version_cli: '1.54.0',
version_cli: N8N_VERSION,
workflow_id: 'workflow123',
});
});
Expand Down

0 comments on commit 483e324

Please sign in to comment.