2022-04-06 16:51:04 +01:00
|
|
|
// Copyright (C) 2022 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
preset: '@vue/cli-plugin-unit-jest/presets/typescript',
|
2022-11-04 11:48:16 +00:00
|
|
|
setupFiles: ['./jest.setup.ts'],
|
2022-04-06 16:51:04 +01:00
|
|
|
testEnvironment: 'jsdom',
|
|
|
|
transform: {
|
2022-11-04 11:48:16 +00:00
|
|
|
'^.+\\.svg$': '<rootDir>/tests/unit/mock/svgTransform.js',
|
|
|
|
},
|
|
|
|
};
|