midniteio / multi-cuke

Parallel cucumber-js testing via Node's child_process.spawn api
13 stars 4 forks source link

Can't identify feature tags #63

Closed guilhotarras closed 7 years ago

guilhotarras commented 7 years ago

When having a feature:

@BAT_file Feature: CPA BAT

@01_web_app_build_number Scenario: BAT 01 - Web App Build Number Given I am on CPA Login page And I should be at "LOGIN PAGE" And I login with "BAT ACCOUNT"

and having this configuration:

const multicuke = require('multi-cuke').default; var options = { paths: ['./features'], tags: ['@BAT_file'], requires: [], cucumberPath: "node_modules/cucumber/bin/cucumber.js", workers: 4, workerEnvVars: {}, logDir: '.multiCuke_logs', silentSummary: false, verbose: false, inlineStream: false, failFast: false, devMode: false, strict: false }; multicuke(options);

multi-cuke throws this message: There are no scenarios found that match the options passed.

So, I assume that feature tags are being ignored

midniteio commented 7 years ago

Interesting. Let me look at how this is getting parsed out.

As an aside, feel free to also jump into gitter, there's a multi-cuke lobby that's setup. If you have any questions off the cuff I'd be happy to answer there as well.

midniteio commented 7 years ago

This is resolved in 0.13.4