https://www.growthbook.io/ logo
#ask-questions
Title
# ask-questions
c

careful-controller-13102

10/11/2023, 2:12 PM
Hello how can i check if Javascript growthbook is serving me a variation instead of a fallback? Currently variations look like this
Copy code
// control
{
placement_1: {enabled:false},
}

// variation 1
placement_1: {enabled:true, url: variation1_url}

// variation 2
placement_1: {enabled:true, url: variation2_url}
Fallback looks like this
Copy code
{
placement_1: {enabled:false},
}
As you can see the fallback value and the control value is exactly the same. So sometimes i'm not sure if i'm getting a control value or a fallback value
f

fresh-football-47124

10/16/2023, 4:56 AM
You can debug a number of ways - if the user is being served an AB test, that will cause the trackingCallback to be fired
otherwise you can debug using our Chrome DevTools
or using the “Test Feature Rule” section on the feature flag
3 Views