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
4 changes: 2 additions & 2 deletions test/environment/.env
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
POSTGRES_VERSION=17
DATAVERSE_DB_USER=dataverse
SOLR_VERSION=9.8.0
DATAVERSE_IMAGE_REGISTRY=ghcr.io
DATAVERSE_IMAGE_TAG=11614-include-isAdvancedSearchField-property
DATAVERSE_IMAGE_REGISTRY=docker.io
DATAVERSE_IMAGE_TAG=unstable
DATAVERSE_BOOTSTRAP_TIMEOUT=5m
4 changes: 2 additions & 2 deletions test/integration/datasets/DatasetsRepository.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -954,8 +954,8 @@
}
])
})

test('should throw error if trying to update an outdated internal version dataset', async () => {
// TODO: add this test when https://github.com/IQSS/dataverse-client-javascript/issues/343 is fixed
test.skip('should throw error if trying to update an outdated internal version dataset', async () => {

Check warning on line 958 in test/integration/datasets/DatasetsRepository.test.ts

View workflow job for this annotation

GitHub Actions / lint

Disabled test
const testDataset = {
metadataBlockValues: [
{
Expand Down
5 changes: 4 additions & 1 deletion test/testHelpers/roles/roleHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ export const createSuperAdminRoleArray = (): Role[] => {
'ManageDatasetPermissions',
'ManageFilePermissions',
'PublishDataverse',
'LinkDataverse',
'PublishDataset',
'LinkDataset',
'DeleteDataverse',
'DeleteDatasetDraft'
],
Expand Down Expand Up @@ -99,10 +101,11 @@ export const createSuperAdminRoleArray = (): Role[] => {
'ManageDatasetPermissions',
'ManageFilePermissions',
'PublishDataset',
'LinkDataset',
'DeleteDatasetDraft'
],
description:
'For datasets, a person who can edit License + Terms, edit Permissions, and publish datasets.',
'For datasets, a person who can edit License + Terms, edit Permissions, and publish and link datasets.',
id: 7
},
{
Expand Down