21 lines
575 B
JavaScript
21 lines
575 B
JavaScript
|
|
/**
|
||
|
|
* HTTP integration tests: transpile-only (no ts-jest semantic diagnostics) so the
|
||
|
|
* suite does not pull full strict checking of the SolaceNet → Prisma dependency graph.
|
||
|
|
* Unit tests under src/__tests__/unit/core/gateway use the main jest.config.js.
|
||
|
|
*/
|
||
|
|
const base = require('./jest.config.js');
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
...base,
|
||
|
|
setupFiles: ['<rootDir>/src/__tests__/gateway-http-env-setup.ts'],
|
||
|
|
testMatch: ['**/gateway-rails-http.integration.test.ts'],
|
||
|
|
transform: {
|
||
|
|
'^.+\\.ts$': [
|
||
|
|
'ts-jest',
|
||
|
|
{
|
||
|
|
diagnostics: false,
|
||
|
|
},
|
||
|
|
],
|
||
|
|
},
|
||
|
|
};
|