You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's currently not possible to load more than one feature with the volatile configuration, making it impossible to run a feature suite in memory-only environments like browsers.
The text was updated successfully, but these errors were encountered:
The VolatileConfiguration object is the one used by the Cucumber constructor. Which in turn is the constructor one can invoke to quickly instantiate a Cucumber.js runner.
Currently we can do this:
varcucumber=Cucumber(featureSource,supportCode);
Where featureSource can only be a String (supportCode being a function).
It should allow for the following:
varcucumber=Cucumber(featureSources,supportCode);
Where featureSources would be an Array of Strings.
It's currently not possible to load more than one feature with the volatile configuration, making it impossible to run a feature suite in memory-only environments like browsers.
The text was updated successfully, but these errors were encountered: