0.1.5-alpha 13-FEBRUARY-2022
- Support for
@nestjs/typeorm
v8.
0.1.4-alpha 12-FEBRUARY-2022
- Support for typeorm ^0.2.41.
0.1.1-alpha 21-DECEMBER-2020
- Updated to typeorm ^0.2.29.
- Updated to jest ^26.6.3.
- Added fake
on
andremoveListener
tofakeConnection
.
0.1.0-alpha 12-SEPTEMBER-2020
- Fixed problem about not restoring
typeorm.createConnection
stub (removedsinon
). - Internal
TypeOrmTestCoreModule.forRoot
now is asyncTypeOrmTestCoreModule.forRootAsync
to wait for any pending async operation in the compilation. - Added chore(deps) updates from dependabot.
- Updated dependencies (jest, typescript).
- Updated tests.
0.0.9-alpha 11-APRIL-2020
- Removed unneccesary log.
0.0.8-alpha 11-APRIL-2020
- Added
FakeConnection
disconnection onmodule.close()
orconnection.close()
.
0.0.7-alpha 11-APRIL-2020
- Added tests.
- Added option to add custom connection name.
- TIL:
@InjectRepository
looks for entities on thedefault
connection, you should provide the connection name as a second argument, check thetesting-module.spec.ts
tests. - Updated
default
connection toDEFAULT_CONNECTION_NAME
.