Skip to content

Commit

Permalink
Update terminology in ListView acceptance tests. (umbraco#17265)
Browse files Browse the repository at this point in the history
Co-authored-by: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com>
  • Loading branch information
loranallensmith and iOvergaard authored Nov 21, 2024
1 parent 85f1f81 commit 3d3b5d5
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ for (const listViewType of listViewTypes) {
expect(dataTypeData.values).toContainEqual(expectedDataTypeValues);
});

test('can update content app icon', async ({umbracoApi, umbracoUi}) => {
test('can update workspace view icon', async ({umbracoApi, umbracoUi}) => {
// Arrange
const iconValue = 'icon-activity';
const expectedDataTypeValues = {
Expand All @@ -241,9 +241,9 @@ for (const listViewType of listViewTypes) {
expect(dataTypeData.values).toContainEqual(expectedDataTypeValues);
});

test('can update content app name', async ({umbracoApi, umbracoUi}) => {
test('can update workspace view name', async ({umbracoApi, umbracoUi}) => {
// Arrange
const contentAppName = 'Test Content App Name';
const contentAppName = 'Test Workspace View Name';
const expectedDataTypeValues = {
"alias": "tabName",
"value": contentAppName
Expand All @@ -259,7 +259,7 @@ for (const listViewType of listViewTypes) {
expect(dataTypeData.values).toContainEqual(expectedDataTypeValues);
});

test('can enable show content app first', async ({umbracoApi, umbracoUi}) => {
test('can enable show Content Workspace View first', async ({umbracoApi, umbracoUi}) => {
// Arrange
const expectedDataTypeValues = {
"alias": "showContentFirst",
Expand Down

0 comments on commit 3d3b5d5

Please sign in to comment.