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
18 changes: 9 additions & 9 deletions tests/Umbraco.Tests.AcceptanceTest/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tests/Umbraco.Tests.AcceptanceTest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"wait-on": "^7.2.0"
},
"dependencies": {
"@umbraco/json-models-builders": "^2.0.1 ",
"@umbraco/playwright-testhelpers": "^2.0.0-beta.21",
"@umbraco/json-models-builders": "^2.0.4",
"@umbraco/playwright-testhelpers": "^2.0.0-beta.25",
"camelize": "^1.0.0",
"dotenv": "^16.3.1",
"faker": "^4.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ test.describe('Dictionary tests', () => {
await umbracoUi.dictionary.goToSection(ConstantHelper.sections.dictionary);

// Act
await umbracoUi.dictionary.clickCreateButton();
await umbracoUi.dictionary.clickCreateLink();
await umbracoUi.dictionary.enterDictionaryName(dictionaryName);
await umbracoUi.dictionary.clickSaveButton();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ test.describe('Relation types tests', () => {
// TODO: when frontend is ready, verify the new relation type name is displayed in the Relation Types tree
});

test('can update name of a relation type', async ({umbracoApi, umbracoUi}) => {
test.skip('can update name of a relation type', async ({umbracoApi, umbracoUi}) => {
// Arrange
const wrongRelationTypeName = 'Updated Relation Type';
await umbracoApi.relationType.ensureNameNotExists(wrongRelationTypeName);
Expand All @@ -51,7 +51,7 @@ test.describe('Relation types tests', () => {
expect(await umbracoApi.relationType.doesNameExist(wrongRelationTypeName)).toBeFalsy();
});

test('can update direction value of a relation type', async ({umbracoApi, umbracoUi}) => {
test.skip('can update direction value of a relation type', async ({umbracoApi, umbracoUi}) => {
// Arrange
relationTypeId = await umbracoApi.relationType.create(relationTypeName, false, false, objectTypeId, objectTypeId);

Expand All @@ -66,7 +66,7 @@ test.describe('Relation types tests', () => {
expect(relationTypeData.isBidirectional).toEqual(true);
});

test('can update isDependency value of a relation type', async ({umbracoApi, umbracoUi}) => {
test.skip('can update isDependency value of a relation type', async ({umbracoApi, umbracoUi}) => {
// Arrange
const updatedObjectTypeName = 'Media';
relationTypeId = await umbracoApi.relationType.create(relationTypeName, false, false, objectTypeId, objectTypeId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ test.describe('Partial View Folder tests', () => {
// Act
await umbracoUi.partialView.clickRootFolderCaretButton();
await umbracoUi.partialView.clickActionsMenuForPartialView(folderName);
await umbracoUi.partialView.deletePartialView();
await umbracoUi.partialView.deleteFolder();

// Assert
await umbracoUi.partialView.isSuccessNotificationVisible();
Expand Down