Skip to content

Commit

Permalink
ci: Fix DB tests (no-changelog) (#8513)
Browse files Browse the repository at this point in the history
  • Loading branch information
netroy authored and ivov committed Jan 31, 2024
1 parent c43169a commit fc7e1d6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cli/test/unit/InternalHooks.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { mock } from 'jest-mock-extended';
import config from '@/config';
import { N8N_VERSION } from '@/constants';
import { InternalHooks } from '@/InternalHooks';
import type { License } from '@/License';
Expand Down Expand Up @@ -40,7 +41,7 @@ describe('InternalHooks', () => {

expect(telemetry.identify).toHaveBeenCalledWith({
version_cli: N8N_VERSION,
db_type: 'sqlite',
db_type: config.get('database.type'),
n8n_version_notifications_enabled: true,
n8n_disable_production_main_process: false,
system_info: {
Expand Down

0 comments on commit fc7e1d6

Please sign in to comment.