Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- name: Install dependencies for all plugins
run: |
npm run setup-repo-old
NODE_ENV=PREPACK_MODE npm run setup-repo-old

- name: Run tests for Contentstack Command
working-directory: ./packages/contentstack-command
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export default abstract class BaseClass {
case 'export-taxonomy':
return this.stack
.taxonomy(uid)
.export()
.export(queryParam)
.then((response: any) => resolve({ response, uid }))
.catch((error: any) => reject({ error, uid }));
default:
Expand Down
Loading