ace0ef89a2
Finally migrated web/satellite UI to use Vue 3. Issue: https://github.com/storj/storj/issues/5862 Change-Id: I609e2332142b9092d6efeb2d4b931e34cce846cc
21 lines
502 B
JavaScript
21 lines
502 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',
|
|
},
|
|
modulePathIgnorePatterns: ['<rootDir>/tests/unit/ignore'],
|
|
moduleFileExtensions: [
|
|
'js',
|
|
'ts',
|
|
'json',
|
|
'vue',
|
|
],
|
|
};
|