8268933b56
Fixed web linter. Issue: https://github.com/storj/storj/issues/5158 Change-Id: Ia63e3e6e7352a99e902c9ed08a4bcfd75059e943
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',
|
|
},
|
|
}; |