import { describe, expect, it } from 'vitest'

import { ACTIONS_GATEWAY_PACKAGE } from '@overdeck/actions-gateway'

describe('Actions Gateway package', () => {
  it('exports its package identity', () => {
    expect(ACTIONS_GATEWAY_PACKAGE).toBe('@overdeck/actions-gateway')
  })
})
