(CAMPAIGN)
| 1552 | } |
| 1553 | |
| 1554 | getOrStartRequireSignupExperimentValue (CAMPAIGN) { |
| 1555 | if (!(Object.keys(REQUIRE_SIGN_UP_EXPERIMENT).includes(CAMPAIGN))) { |
| 1556 | return 'control' |
| 1557 | } |
| 1558 | const value = this.getRequireSignupExperimentValue(CAMPAIGN) |
| 1559 | if (value != null) { |
| 1560 | return value |
| 1561 | } |
| 1562 | return this.tryStartExperiment(REQUIRE_SIGN_UP_EXPERIMENT[CAMPAIGN]) |
| 1563 | } |
| 1564 | |
| 1565 | getGalaxyTutorialExperimentValue () { |
| 1566 | // Returns the value the user is already assigned to (or a query-string override), |
nothing calls this directly
no test coverage detected