test(editor): Move unit tests (no-changelog) (#5998)

* test(editor): Move unit tests (no-changelog)

* trigger checks

* trigger checks

* trigger checks

* trigger checks
This commit is contained in:
Csaba Tuncsik 2023-04-19 08:46:06 +02:00 committed by GitHub
parent cd894893aa
commit 3c9b2e1e01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View file

@ -1,10 +1,10 @@
import { createPinia, setActivePinia } from 'pinia';
import { usePostHog } from './posthog';
import { useUsersStore } from './users';
import { useSettingsStore } from './settings';
import { usePostHog } from '@/stores/posthog';
import { useUsersStore } from '@/stores/users';
import { useSettingsStore } from '@/stores/settings';
import { IN8nUISettings } from '@/Interface';
import { useRootStore } from './n8nRootStore';
import { useTelemetryStore } from './telemetry';
import { useRootStore } from '@/stores/n8nRootStore';
import { useTelemetryStore } from '@/stores/telemetry';
const DEFAULT_POSTHOG_SETTINGS: IN8nUISettings['posthog'] = {
enabled: true,