'use strict'; module.exports = { displayName: 'API integration tests', testMatch: ['**/?(*.)+(spec|test).api.(js|ts)'], testEnvironment: 'node', setupFilesAfterEnv: ['/tests/setup/jest-api.setup.js'], coveragePathIgnorePatterns: [ '/dist/', '/node_modules/', '/out-tsc/', '/test/', ], transform: { '^.+\\.ts$': ['@swc/jest'], }, modulePathIgnorePatterns: ['.cache'], };