c5bca894fd
Added imports linting, trailing commas, trailing semicolons, single quotes and spaces between curly braces. Change-Id: I5de5d3eea48753dfe2737983b230bafaffe898c8
14 lines
345 B
JavaScript
14 lines
345 B
JavaScript
// Copyright (C) 2022 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
process.env.TZ = 'UTC';
|
|
|
|
module.exports = {
|
|
preset: '@vue/cli-plugin-unit-jest/presets/typescript',
|
|
setupFiles: ['./jest.setup.ts'],
|
|
testEnvironment: 'jsdom',
|
|
transform: {
|
|
'^.+\\.svg$': '<rootDir>/tests/unit/mock/svgTransform.js',
|
|
},
|
|
};
|