Skip to content

Commit 0fcce43

Browse files
committed
chore: clean up
1 parent aca3896 commit 0fcce43

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/__tests__/polymorphic.repository.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ describe('AbstractPolymorphicRepository', () => {
4242
});
4343

4444
describe('Childen', () => {
45-
4645
describe('create', () => {
4746
it('Can create with parent', async () => {
4847
const repository = connection.getCustomRepository(AdvertRepository);

src/polymorphic.repository.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,6 @@ export abstract class AbstractPolymorphicRepository<E> extends Repository<E> {
279279
options.map(
280280
(option: PolymorphicMetadataInterface) =>
281281
new Promise((resolve) => {
282-
console.log('delete', option.deleteBeforeUpdate);
283282
if (!option.deleteBeforeUpdate) {
284283
resolve(Promise.resolve());
285284
}

0 commit comments

Comments
 (0)