blob: 1a62fcf96b9ef6603e13b3d860b8543f5af56fc9 [file] [log] [blame]
Simon Zünd52e20202021-06-16 06:34:281"use strict";
2
3module.exports = function(it) {
4 const { pattern, globDisabled } = it;
5
6 return `
7No files matching the pattern "${pattern}"${globDisabled ? " (with disabling globs)" : ""} were found.
8Please check for typing mistakes in the pattern.
Jack Franklin3710bbf2022-04-21 08:31:209`.trimStart();
Simon Zünd52e20202021-06-16 06:34:2810};