Update terminology in ListView acceptance tests. (#17265)

Co-authored-by: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com>
This commit is contained in:
Allen Smith
2024-11-21 10:30:59 -05:00
committed by GitHub
parent 85f1f81390
commit 3d3b5d53d6

View File

@@ -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 = {
@@ -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
@@ -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",