linear-gradient-parser
Version:
Parses a SVG linear gradient string / parsed JSON into css background image property
19 lines (16 loc) • 353 B
JavaScript
const path = require('path');
const appRoot = path.resolve('.');
module.exports = {
verbose: true,
rootDir: appRoot,
collectCoverageFrom: [
'**/*.{mjs,js}'
],
moduleFileExtensions: [
'js', 'json', 'jsx', 'mjs'
],
testURL: 'http://localhost/',
transform: {
'^.+\\.m?jsx?$': 'babel-jest'
}
};