UNPKG

botium-core

Version:
10 lines (8 loc) 353 B
const BaseTextAsserter = require('./BaseTextAsserter') const MatchFunctions = require('../../MatchFunctions') module.exports = class TextWildcardExactAllAsserter extends BaseTextAsserter { constructor (context, caps = {}) { super(context, caps, MatchFunctions.wildcardExact(false), 'all') this.name = 'Text Wildcard Exact All Asserter' } }