The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/packages/random/jest.config.ts

18 lines
443 B

import client from '@rocket.chat/jest-presets/client';
import server from '@rocket.chat/jest-presets/server';
import type { Config } from 'jest';
export default {
projects: [
{
displayName: 'client',
preset: client.preset,
testMatch: ['<rootDir>/src/**/*.client.spec.[jt]s?(x)'],
},
{
displayName: 'server',
preset: server.preset,
testMatch: ['<rootDir>/src/**/*.server.spec.[jt]s?(x)'],
},
],
} satisfies Config;