jest.config.js 329 B

1234567891011121314
  1. // Copyright 2019-2021 Tauri Programme within The Commons Conservancy
  2. // SPDX-License-Identifier: Apache-2.0
  3. // SPDX-License-Identifier: MIT
  4. module.exports = {
  5. preset: 'ts-jest',
  6. testEnvironment: 'node',
  7. modulePathIgnorePatterns: ['__fixtures__'],
  8. globals: {
  9. 'ts-jest': {
  10. tsconfig: 'tsconfig.json'
  11. }
  12. }
  13. }