Skip to content

Instantly share code, notes, and snippets.

@qcom
Created October 21, 2021 01:40
Embed
What would you like to do?
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
module.exports = {
preset: "ts-jest",
testMatch: [
'**/__tests__/**/*.[jt]s?(x)',
'**/?(*.)+(spec|test).[jt]s?(x)',
'**/test/file-i-am-debugging.ts',
],
testPathIgnorePatterns: [
"/node_modules/",
"/deprecated/",
"/dist/",
],
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment