@shopware-ag/acceptance-test-suite 2.8.0 → 2.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3929,7 +3929,7 @@ class FeatureService {
|
|
|
3929
3929
|
return this.features[name]?.active ?? false;
|
|
3930
3930
|
}
|
|
3931
3931
|
async loadFeatures() {
|
|
3932
|
-
if (Object.keys(this.features).length
|
|
3932
|
+
if (Object.keys(this.features).length > 0) {
|
|
3933
3933
|
return;
|
|
3934
3934
|
}
|
|
3935
3935
|
const res = await this.apiContext.get("_action/feature-flag");
|