From 080d4681bb6334e1bf673edbb23200378dba96d9 Mon Sep 17 00:00:00 2001 From: jandroav Date: Mon, 4 Mar 2024 14:28:27 +0100 Subject: [PATCH] test --- src/liquibase.spec.ts | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/src/liquibase.spec.ts b/src/liquibase.spec.ts index 074c4aa..18be1f5 100644 --- a/src/liquibase.spec.ts +++ b/src/liquibase.spec.ts @@ -206,16 +206,6 @@ describe('Liquibase', () => { }); }); - describe('#changelogSync', () => { - it('should call run method', async () => { - const param = {} as ChangelogSyncCommandAttributes; - spyOn(instance, 'run'); - - instance.changelogSync(param); - expect(instance['run']).toHaveBeenCalled(); - }); - }); - describe('#checksBulkSet', () => { it('should call run method', async () => { const param = {} as ChecksBulkSetCommandAttributes; @@ -288,7 +278,7 @@ describe('Liquibase', () => { describe('#checksReset', () => { it('should call run method', async () => { - const param = {} as ChecksEnableCommandAttributes; + const param = {} as ChecksResetCommandAttributes; spyOn(instance, 'run'); instance.checksReset(param);