UNPKG

@mmisty/cypress-grep

Version:

Filters tests by tags/title using substring or regular expressions (can find dynamic tags)

8 lines (7 loc) 222 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.uniq = void 0; const uniq = (arr) => { return arr.filter((str, index, self) => self.indexOf(str) === index); }; exports.uniq = uniq;