dollarshaveclub / study

A simple, progressive, client/server AB testing library 📚
314 stars 13 forks source link

Analytics? #24

Closed vilav closed 7 years ago

vilav commented 7 years ago

Hi there

Noob Question: is there a way to have the data from the A/B tests reported inside of Google Analytics?

Thanks!

jakiestfu commented 7 years ago

Study will never support analytics out-of-the-box. That part of the software is up to you, but you could easily do something like the following:

dataLayer.push({
  abTests: tester.assignments(),
})

Hope this helps!