e0f3166343
WHAT: unit tests for vue components and vuex store and environment for it WHY: to cover frontend part with tests Change-Id: I2aeaadb200176d4ba0a1406068304785e95d92cd
18 lines
391 B
JavaScript
18 lines
391 B
JavaScript
// Copyright (C) 2021 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
const vueJest = require('vue-jest/lib/template-compiler');
|
|
|
|
module.exports = {
|
|
process(content) {
|
|
const { render } = vueJest({
|
|
content,
|
|
attrs: {
|
|
functional: false,
|
|
},
|
|
});
|
|
|
|
return `module.exports = { render: ${render} }`;
|
|
},
|
|
};
|