mirror of
https://github.com/origranot/reduced.to.git
synced 2025-03-14 10:33:54 +00:00
* feat: create an internal queue manager lib * wip: tests * fix: basic unit tests including mocks * feat: use create a basic producer to send messages over to memphis cloud * fix: linter * fix: remove novu module from app * fix: tests * fix: linter --------- Co-authored-by: orig <oriorigranot@gamil.com> Co-authored-by: orig <oriorigraont@gmail.com>
9 lines
184 B
JavaScript
9 lines
184 B
JavaScript
const nxPreset = require('@nx/jest/preset').default;
|
|
|
|
module.exports = { ...nxPreset };
|
|
|
|
// Set the NODE_ENV to test
|
|
process.env = Object.assign(process.env, {
|
|
NODE_ENV: 'test',
|
|
});
|