mirror of
https://github.com/RocketChat/Rocket.Chat.git
synced 2025-12-28 14:58:55 +00:00
13 lines
260 B
TypeScript
13 lines
260 B
TypeScript
import server from '@rocket.chat/jest-presets/server';
|
|
import type { Config } from 'jest';
|
|
|
|
export default {
|
|
projects: [
|
|
{
|
|
displayName: 'server',
|
|
preset: server.preset,
|
|
testMatch: ['<rootDir>/src/**/*.spec.[jt]s?(x)'],
|
|
},
|
|
],
|
|
} satisfies Config;
|