From dbdb0f1aba729edf265345edefcf6e1ccacd5457 Mon Sep 17 00:00:00 2001 From: Paul D'Ambra Date: Tue, 16 Jul 2024 10:54:33 +0100 Subject: [PATCH] chore: move test file (#1306) --- .../extensions/surveys/action-matcher.test.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) rename src/{ => __tests__}/extensions/surveys/action-matcher.test.ts (94%) diff --git a/src/extensions/surveys/action-matcher.test.ts b/src/__tests__/extensions/surveys/action-matcher.test.ts similarity index 94% rename from src/extensions/surveys/action-matcher.test.ts rename to src/__tests__/extensions/surveys/action-matcher.test.ts index 2aa2b3a10..c7ef574f2 100644 --- a/src/extensions/surveys/action-matcher.test.ts +++ b/src/__tests__/extensions/surveys/action-matcher.test.ts @@ -1,10 +1,10 @@ /// -import { ActionType, ActionStepStringMatching } from '../../posthog-surveys-types' -import { PostHogPersistence } from '../../posthog-persistence' -import { PostHog } from '../../posthog-core' -import { CaptureResult, PostHogConfig } from '../../types' -import { ActionMatcher } from './action-matcher' +import { ActionType, ActionStepStringMatching } from '../../../posthog-surveys-types' +import { PostHogPersistence } from '../../../posthog-persistence' +import { PostHog } from '../../../posthog-core' +import { CaptureResult, PostHogConfig } from '../../../types' +import { ActionMatcher } from '../../../extensions/surveys/action-matcher' describe('action-matcher', () => { let config: PostHogConfig