Fix typos

This commit is contained in:
Andrew Eisenberg 2022-10-07 16:27:25 -07:00
parent 919e4caca1
commit 6c869f8b03
6 changed files with 9 additions and 9 deletions

View file

@ -157,7 +157,7 @@ for (const featureFlag of Object.keys(feature_flags_1.featureConfig)) {
// specify a minimum version, then we will have a bunch of code no longer being
// tested. This is unlikely, and this test will fail if that happens.
// If we do end up in that situation, then we should consider adding a synthetic
// feature flag with a minium version that is only used for tests.
// feature flag with a minimum version that is only used for tests.
(0, ava_1.default)("At least one feature has a minimum version specified", (t) => {
t.assert(Object.values(feature_flags_1.featureConfig).some((f) => f.minimumVersion !== undefined), "At least one feature flag should have a minimum version specified");
// An even less likely scenario is that we no longer have any feature flags.