Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import nock from 'nock'
import { createTestIntegration } from '@segment/actions-core'
import Definition from '../index'
import { apiBaseUrl } from '../properties'
import { apiBaseUrl } from '../constants'
import { Settings } from '../generated-types'

const testDestination = createTestIntegration(Definition)
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { defaultValues, DestinationDefinition } from '@segment/actions-core'
import type { Settings } from './generated-types'
import { apiBaseUrl } from './properties'
import { apiBaseUrl } from './constants'

import trackEvent from './trackEvent'

import syncToUserGroup from './syncToUserGroup'

const presets: DestinationDefinition['presets'] = [
{
name: 'Track User Actions',
Expand Down Expand Up @@ -80,7 +82,8 @@ const destination: DestinationDefinition<Settings> = {
},
presets,
actions: {
trackEvent
trackEvent,
syncToUserGroup
}
}

Expand Down
Loading
Loading