diff --git a/lib/stack/index.js b/lib/stack/index.js index 9453a74b..d86f72cb 100644 --- a/lib/stack/index.js +++ b/lib/stack/index.js @@ -19,7 +19,7 @@ import { Branch } from './branch' import { BranchAlias } from './branchAlias' import { AuditLog } from './auditlog' import { Taxonomy } from './taxonomy' -// import { format } from 'util' + /** * A stack is a space that stores the content of a project (a web or mobile property). Within a stack, you can create content structures, content entries, users, etc. related to the project. Read more about Stacks. * @namespace Stack diff --git a/test/api/taxonomy-test.js b/test/api/taxonomy-test.js index 6bf2eb49..2ecc7c73 100644 --- a/test/api/taxonomy-test.js +++ b/test/api/taxonomy-test.js @@ -13,7 +13,7 @@ const taxonomy = { } var taxonomyUID = '' -// var taxonomyDelUID = 'taxonomy_testing' +var taxonomyDelUID = 'taxonomy_testing' describe('taxonomy api Test', () => { setup(() => { @@ -58,15 +58,15 @@ describe('taxonomy api Test', () => { .catch(done) }) - // it('Delete taxonomy from uid', done => { - // makeTaxonomy(taxonomyDelUID) - // .delete() - // .then((taxonomyResponse) => { - // expect(taxonomyResponse.notice).to.be.equal('Taxonomy deleted successfully.') - // done() - // }) - // .catch(done) - // }) + it('Delete taxonomy from uid', done => { + makeTaxonomy(taxonomyDelUID) + .delete() + .then((taxonomyResponse) => { + expect(taxonomyResponse.notice).to.be.equal('Taxonomy deleted successfully.') + done() + }) + .catch(done) + }) it('Query to get all taxonomies', async () => { makeTaxonomy()