2b78433cf0
fixed issue with required props that were not passed to component; added default props; related test added to ignored folder till vue 3 version update with vue-cli-service; Change-Id: Idc95a4c0b9f124797519652004abf53e066605c2
15 lines
408 B
JavaScript
15 lines
408 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'],
|
|
};
|