Experimental flags

For certain specific scenarios we have exposed experimental flags on sdk to cater to different edge cases in an application.

This above call to enable experimental flags should be done before initializing sdk.

htSdk.enableExperimentalFlags([]); // The desired "ExperimentalFlags" enum values should be passed in the array.

/*
ExperimentalFlags enum is available on htSdk.
The following are the supported flags.
enum ExperimentalFlags {
  EnableSqlite3Instrumentation,
  EnableRedisShortSubmoduleName,
  EnableMongooseConnectionUnmocking,
}
*/

Please contact hypertest support if you need more information to use them.

Last updated