Skip to content

Commit 346f945

Browse files
committed
fixed test
1 parent 7e67139 commit 346f945

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/contentstack-import/test/unit/utils/import-config-handler.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,14 +389,14 @@ describe('Import Config Handler', () => {
389389
expect(result.skipEntriesPublish).to.be.true;
390390
});
391391

392-
it('should set skipTaxonomyPublish to true by default', async () => {
392+
it('should set skipTaxonomyPublish to false by default', async () => {
393393
const importCmdFlags = {
394394
data: '/test/content',
395395
};
396396

397397
const result = await setupConfig(importCmdFlags);
398398

399-
expect(result.skipTaxonomyPublish).to.be.true;
399+
expect(result.skipTaxonomyPublish).to.be.false;
400400
});
401401

402402
it('should allow skipTaxonomyPublish to be overridden to false', async () => {

0 commit comments

Comments
 (0)