UNPKG

generator-springboot-hexagonal

Version:

A code generator for SpringBoot microservices in Hexagonal Architecture

16 lines (11 loc) 295 B
/** * @fileoverview Build script that runs unit tests with Jest. */ const jest = require('jest'); process.env.BABEL_ENV = 'test'; process.env.NODE_ENV = 'test'; process.on('unhandledRejection', (err) => { throw err; }); const argv = process.argv.slice(2); jest.run(argv);