jeffijoe/awilix

View on GitHub
src/__tests__/fixture/services/anotherService.js

Summary

Maintainability
A
0 mins
Test Coverage
class AnotherService {
  constructor(answerRepository) {
    this.repo = answerRepository
  }
}

module.exports.AnotherService = AnotherService

module.exports.default = function (deps) {
  return new AnotherService(deps.answerRepository)
}