Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jandroav committed Mar 4, 2024
1 parent 88c537b commit 080d468
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions src/liquibase.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,16 +206,6 @@ describe('Liquibase', () => {
});
});

describe('#changelogSync', () => {
it('should call run method', async () => {
const param = {} as ChangelogSyncCommandAttributes;
spyOn<any>(instance, 'run');

instance.changelogSync(param);
expect(instance['run']).toHaveBeenCalled();
});
});

describe('#checksBulkSet', () => {
it('should call run method', async () => {
const param = {} as ChecksBulkSetCommandAttributes;
Expand Down Expand Up @@ -288,7 +278,7 @@ describe('Liquibase', () => {

describe('#checksReset', () => {
it('should call run method', async () => {
const param = {} as ChecksEnableCommandAttributes;
const param = {} as ChecksResetCommandAttributes;
spyOn<any>(instance, 'run');

instance.checksReset(param);
Expand Down

0 comments on commit 080d468

Please sign in to comment.