@lwc/jest-transformer
Version:
Jest transformer for LWC and engine
15 lines (13 loc) • 403 B
JavaScript
/*
* Copyright (c) 2018, salesforce.com, inc.
* All rights reserved.
* SPDX-License-Identifier: MIT
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
*/
const jestTranformer = require('./index.js');
module.exports = {
...jestTranformer,
process(src, filePath) {
return jestTranformer.transformLwc(src, filePath, true);
},
};