Skip to content

Commit

Permalink
fix(serenity-cucumber): The tags parameter in cucumberOpts is now…
Browse files Browse the repository at this point in the history
… correctly typed as a list of strings, rather than a single string.
  • Loading branch information
jan-molak committed Feb 10, 2017
1 parent a593a84 commit abdedda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/serenity-cucumber/cucumber_test_framework.ts
@@ -1,9 +1,9 @@
import { TestFramework } from '../serenity-protractor/framework';
import { attemptToRequire } from '../serenity/io/attempt_require';

import _ = require('lodash');
import glob = require('glob');
import path = require('path');
import { attemptToRequire } from '../serenity/io/attempt_require';

export class CucumberTestFramework implements TestFramework {

Expand Down Expand Up @@ -79,7 +79,7 @@ export interface CucumberConfig {
/**
* @link https://docs.cucumber.io/tag-expressions/
*/
tags?: string;
tags?: string[];

/**
* @link https://github.com/cucumber/cucumber-js/blob/master/docs/cli.md#world-parameters
Expand Down

0 comments on commit abdedda

Please sign in to comment.