1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-02-02 11:20:17 -06:00
paricafe/packages/backend/jest.config.unit.cjs

15 lines
302 B
JavaScript
Raw Normal View History

/*
* For a detailed explanation regarding each configuration property and type check, visit:
* https://jestjs.io/docs/en/configuration.html
*/
const base = require('./jest.config.cjs')
module.exports = {
...base,
testMatch: [
"<rootDir>/test/unit/**/*.ts",
"<rootDir>/src/**/*.test.ts",
],
};