()
| 24 | const reqEm = orm.em.fork(); |
| 25 | |
| 26 | async function requestCommonService() { |
| 27 | const [b] = await orm.em.getRepository(Book2).find({}); |
| 28 | return b.title; |
| 29 | } |
| 30 | |
| 31 | const { titleA, titleB } = await reqEm.transactional(async em => { |
| 32 | const b = await em.findOneOrFail(Book2, book.uuid); |
no test coverage detected