UNPKG

check-tests

Version:

Static analysis for tests. Prints all tests in console and fails when exclusive or skipped tests found.

10 lines (8 loc) 197 B
const TAG_REGEX = /\@([\w\d\-\(\)\.\,\*:]+)/g; const TEST_ID_REGEX = /@T([\w\d]{8})/; const SUITE_ID_REGEX = /@S([\w\d]{8})/; module.exports = { SUITE_ID_REGEX, TAG_REGEX, TEST_ID_REGEX, };