UNPKG

e2ed

Version:

E2E testing framework over Playwright

16 lines (15 loc) 476 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SLASHES_AT_THE_START_REGEXP = exports.SLASHES_AT_THE_END_REGEXP = exports.ANY_URL_REGEXP = void 0; /** * Regexp that accept any url. */ exports.ANY_URL_REGEXP = /.*/; /** * Regexp that matches all slashes at the end of a line. */ exports.SLASHES_AT_THE_END_REGEXP = /\/+$/; /** * Regexp that matches all slashes at the start of a line. */ exports.SLASHES_AT_THE_START_REGEXP = /^\/+/;