a342edd1c2
Fixed web linter Issue: https://github.com/storj/storj/issues/5158 Change-Id: Ibc0b8e9f241e77e833645d9fa114bf5742c9f81c
11 lines
319 B
JavaScript
11 lines
319 B
JavaScript
// Copyright (C) 2022 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
module.exports = {
|
|
preset: '@vue/cli-plugin-unit-jest/presets/typescript',
|
|
setupFiles: ['./jest.setup.ts'],
|
|
testEnvironment: 'jsdom',
|
|
transform: {
|
|
'^.+\\.svg$': '<rootDir>/tests/unit/mock/svgTransform.js',
|
|
},
|
|
}; |