@the-goat/core
Version:
    || function (cooked, raw) {
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
return cooked;
};
var matchPattern = require('./matchPattern');
test.each(__makeTemplateObject(["\nfile | pattern | expected\n ", " | ", " | ", "\n ", " | ", " | ", "\n ", " | ", " | ", "\n ", " | ", " | ", "\n"], ["\nfile | pattern | expected\n ", " | ", " | ", "\n ", " | ", " | ", "\n ", " | ", " | ", "\n ", " | ", " | ", "\n"]), '/c/www/goat/goat-examples/components/test.js', '**/*.s+(a|c)ss', false, '/c/www/goat/goat-examples/components/test.js', '**/*.js', true, '/c/www/goat/goat-examples/components/test.js', ['**/*.es6.js'], false, '/c/www/goat/goat-examples/components/test.es6.js', ['**/*.es6.js'], true)('returns $expected when $file matches $pattern', function (_a) {
var file = _a.file, pattern = _a.pattern, expected = _a.expected;
expect(matchPattern(file, pattern)).toBe(expected);
});
//# sourceMappingURL=matchPattern.test.js.map