@@ -16,8 +16,7 @@ const COLLECTION_ALIAS_STR = 'secondCollection'
1616const COLLECTION_NAME_STR = 'Laboratory Research'
1717const COLLECTION_AFFILIATION_STR = 'Laboratory Research Corporation'
1818
19- const COLLECTION_DESCRIPTION_HTML = 'This is an <b>example</b> collection used for testing.'
20- const COLLECTION_DESCRIPTION_MARKDOWN = 'This is an **example** collection used for testing.'
19+ const COLLECTION_DESCRIPTION = 'This is an <b>example</b> collection used for testing.'
2120
2221const DATAVERSE_API_REQUEST_HEADERS = {
2322 headers : { 'Content-Type' : 'application/json' , 'X-Dataverse-Key' : process . env . TEST_API_KEY }
@@ -30,7 +29,7 @@ export const createCollectionModel = (): Collection => {
3029 name : COLLECTION_NAME_STR ,
3130 isReleased : COLLECTION_IS_RELEASED ,
3231 affiliation : COLLECTION_AFFILIATION_STR ,
33- description : COLLECTION_DESCRIPTION_MARKDOWN ,
32+ description : COLLECTION_DESCRIPTION ,
3433 isPartOf : { type : DvObjectType . DATAVERSE , identifier : 'root' , displayName : 'Root' } ,
3534 inputLevels : [
3635 {
@@ -59,7 +58,7 @@ export const createCollectionPayload = (): CollectionPayload => {
5958 name : COLLECTION_NAME_STR ,
6059 isReleased : COLLECTION_IS_RELEASED ,
6160 affiliation : COLLECTION_AFFILIATION_STR ,
62- description : COLLECTION_DESCRIPTION_HTML ,
61+ description : COLLECTION_DESCRIPTION ,
6362 isPartOf : { type : DvObjectType . DATAVERSE , identifier : 'root' , displayName : 'Root' } ,
6463 inputLevels : [
6564 {
0 commit comments