💎
Headless Docs
Version 0.2.0
Version 0.2.0
  • Overview
  • Change Log
  • Next.js Steps
    • Requirements
    • Determine Page Methods
      • Route Hashing Method
      • Cookies Method
    • Install Middleware
    • Add Intelligems Provider
    • Read User Context
      • Route Hashing Method
      • Cookies Method
    • Track Page Views
    • Update Prices on Page
    • Update ATC Events
    • Preview Your Site
  • Gatsby Steps
    • Requirements
    • Add Intelligems Provider
    • Track Page Views
    • Update Prices on Page
    • Update ATC Events
    • Preview Your Site
  • Pack Digital Steps
    • Requirements
    • Add Intelligems Provider
    • Track Page Views
    • Update Prices on Page
    • Update ATC Events
    • Preview Your Site
  • Examples
    • Content Testing
  • Reference
    • Middleware Objects
      • IgMiddlewareConfig
      • IgMiddlewareHandler
    • Providers
      • Next.js
      • Gatsby
    • Components
      • Price Components
    • Hooks
      • Price Hooks
      • Track Hooks
      • Experiment Hooks
      • Test Group Hooks
      • Cart & Checkout Hooks
Powered by GitBook
On this page
  • useIgTestGroups()
  • useIgTestGroup()
  1. Reference
  2. Hooks

Test Group Hooks

useIgTestGroups()

Returns a list of Test Groups the user is in.

const useIgTestGroup: () => {
    isReady: boolean;
    testGroups: PluginTestGroupType[]
}

useIgTestGroup()

Returns the Test Group for the inputted Experiment.

const useIgTestGroup: (experimentId: string) => {
    isReady: boolean;
    testGroup: PluginTestGroupType | null;
}
PreviousExperiment HooksNextCart & Checkout Hooks

Last updated 1 year ago