12345678910111213141516 |
- // Copyright 2019-2021 Tauri Programme within The Commons Conservancy
- // SPDX-License-Identifier: Apache-2.0
- // SPDX-License-Identifier: MIT
- module.exports = {
- preset: 'ts-jest',
- testEnvironment: 'node',
- modulePathIgnorePatterns: ['__fixtures__'],
- testMatch: ['<rootDir>/test/**/*.spec.ts'],
- moduleFileExtensions: ['ts', 'js', 'json'],
- globals: {
- 'ts-jest': {
- tsconfig: 'tsconfig.json'
- }
- }
- }
|