cucumber-tag-expressions

Cucumber Tag Expression parser

MIT 7 个版本
安装
npm install cucumber-tag-expressions
yarn add cucumber-tag-expressions
pnpm add cucumber-tag-expressions
bun add cucumber-tag-expressions
README

Cucumber Tag Expressions for JavaScript

Greenkeeper badge

Build Status

The docs are here.

Example

import {TagExpressionParser} from 'cucumber-tag-expressions'
const parser = new TagExpressionParser()

const expressionNode = parser.parse('@tagA and @tagB')

expressionNode.evaluate(["@tagA", "@tagB"]) // => true
expressionNode.evaluate(["@tagA", "@tagC"]) // => false
版本列表
2.0.3 2019-12-11
2.0.2 2019-07-15
2.0.1 2019-07-15
1.1.1 2017-12-01
1.1.0 2017-11-28
1.0.1 2017-05-28
1.0.0 2016-09-01