We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c4e09e7 + c8de061 commit 6e68555Copy full SHA for 6e68555
lib/smoke/smoke-test.js
@@ -52,7 +52,10 @@ class SmokeTest {
52
}
53
54
async compileTests (sets) {
55
- const configsToRun = await filterConfigs(this.configFile, sets, this.isInteractive);
+ let configsToRun = await filterConfigs(this.configFile, sets, this.isInteractive);
56
+ if (!Array.isArray(configsToRun) && configsToRun.__esModule) {
57
+ configsToRun = configsToRun.default;
58
+ }
59
const canRunCrossBrowser = await getBrowserstackConfig(this.enabledBrowsers);
60
const globalOptions = {
61
headers: this.globalHeaders,
0 commit comments