Replies: 1 comment 2 replies
-
/cc @radcortez (config) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm working on a project that is multi-tenant and has a number of feature toggles, we are looking into component tests to validate our services work properly for 5 tenants (and growing) on production and preview (a specific set of feature toggles enabled).
Our current set up uses abstract base test classes with sub-classes for the various tenants with configuration for the base test and optionally additional tests for the specific tenant. Feature toggles are only tested at unit test level so there is limited coverage to see if the feature toggle would impact other parts of the system.
Preferably we want our component tests to run for all tenants with either production level or preview level feature toggles enabled however that results in 10 sub-classes of every test which becomes unmanageable.
I'm interested in others that have similar challenges and how they have handled them.
Beta Was this translation helpful? Give feedback.
All reactions