UNPKG

node-tdd

Version:

Drop in extension for mocha to abstract commonly used test setups

12 lines (10 loc) 276 B
import normalizeUrl from 'normalize-url'; export default (firstUrl, secondUrl) => { if (firstUrl === secondUrl) { return true; } const options = { removeTrailingSlash: false }; return normalizeUrl(firstUrl, options) === normalizeUrl(secondUrl, options); };